Re: a space character in url context

2010-01-21 Thread lyf
its own URLEncoder, a JIRA has been logged about this >> issue with client encode js by Hugo, but seems this way's not >> recommended. >> >> >> On Thu, Jan 21, 2010 at 9:45 AM, lyf wrote: >>> >>> The url of my form looks like: >>&g

Re: How to return a component without a form (T5.1.05)

2010-01-21 Thread lyf
ssing > the > select component? I would like to se some nice suggestions on this, as > this > is a real requirement for me too. > > On Thu, Jan 21, 2010 at 1:34 PM, lyf wrote: > >> >> The page template looks like: >> ... >> >> >>

a space character in url context

2010-01-21 Thread lyf
The url of my form looks like: ./index.domains:selected/Internal%20Domain , which caused a exception saying 'Input string 'Internal Domain' is not valid; the character ' ' at position 9 is not valid.' how to solve this? (T5.1.05) -- View this message in context: http://old.nabble.com/a-space-c

How to return a component without a form (T5.1.05)

2010-01-21 Thread lyf
The page template looks like: ... page class: class Index { @InjectComponent private MyComponent myComponent; Object onSuccess() { return this.myComponent; } } MyComponent template: MyCompon

Re: Is it a bug? T5.1.05

2010-01-20 Thread lyf
; the no-arguments constructor. > > On Tue, Jan 19, 2010 at 8:27 AM, lyf wrote: >> >> Thank you Howard. >> >> Sorry, I didn't describe it clearly. >> >> I mean the base class does not have a default constructor but the >> component >> class

Re: Is it a bug? T5.1.05

2010-01-19 Thread lyf
ult constructor. The above code does not work. Howard Lewis Ship wrote: > > No component class is allowed to have anything but the default > constructor. I'm not sure if this is made sufficiently clear in the > documentation. > > On Tue, Jan 19, 2010 at 6:07 AM,

Is it a bug? T5.1.05

2010-01-19 Thread lyf
I use groovy with T5 I got a base abstract class ObjectList.groovy in the base package And I got a component class DomainList.groovy extends ObjectList in the components package. ObjectList got only one constructor with a parameter, in which case T5 would throw a exception saying the ObjectList