Re: Problems with Form Fragments, JRebel, and BeanEditForm

2016-03-04 Thread Thiago H de Paula Figueiredo
Hi! On Fri, 04 Mar 2016 09:31:02 -0300, wrote: Using the form fragment: fragment="showshipping" /> Separate Ship To? I keep getting this error: org.apache.tapestry5.ioc.internal.util.TapestryException Parameter(s) 'TriggerFragment.fragment' are requir

Re: Page redirect in tapestry5

2016-03-04 Thread Jens Breitenstein
Hi Barry, Am 04/03/16 um 13:00 schrieb Barry Books: Using data directly from the client is never a good idea. While in this case it's probably fine it's a bad habit to fail into. Agreed I would make a enum with the Cookie string and the page class. Use enum.valueOf(cookie) to convert from Stri

Problems with Form Fragments, JRebel, and BeanEditForm

2016-03-04 Thread rapidtransit440
Using the form fragment: Separate Ship To? I keep getting this error: org.apache.tapestry5.ioc.internal.util.TapestryException Parameter(s) 'TriggerFragment.fragment' are required for org.apache.tapestry5.corelib.components.Checkbox, but h

Re: Page redirect in tapestry5

2016-03-04 Thread Barry Books
Using data directly from the client is never a good idea. While in this case it's probably fine it's a bad habit to fail into. I would make a enum with the Cookie string and the page class. Use enum.valueOf(cookie) to convert from String to enum and then return the class from the enum. I suspect yo