Re: T5 TextField and Hidden problems

2009-07-07 Thread Robert Zeigler
Make sure that whatever condition enables the text field on the client side is followed on the server-side. That is, it's possible that the data is being submitted just fine, but server-side, the textfield component is checking disabled, finding that the condition which specifies whether the

Re: T5 TextField and Hidden problems

2009-07-07 Thread Thiago H. de Paula Figueiredo
We just have two threads talking about these two issues you have. Take a look at the mailing list archive at http://www.nabble.com/Tapestry-f302.html. -- Thiago - To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org For

T5 TextField and Hidden problems

2009-07-07 Thread haipeng du
I have TextField component which is disabled when template is rendered. It will be enabled from javascript and submit data to server. But the data change is not bound back to server. I must render TextField as enabled to get data back and I can not use javascript to change the status. Is that true?