Re: how to clear the textarea after submit

2012-08-03 Thread George Christman
Where is your feedback attribute? Your code snippet seems to be incomplete. Are you persisting it? -- View this message in context: http://tapestry.1045711.n5.nabble.com/how-to-clear-the-textarea-after-submit-tp5714847p5715038.html Sent from the Tapestry - User mailing list archive at Nabble.co

Re: how to clear the textarea after submit

2012-07-28 Thread Anbazhagan
This is my tml page. ${submitData} My java page @Persist private String returnData ; void onSelectedFromData() { if(feedback.length()!=0) { System.out.println("successfully

Re: how to clear the textarea after submit

2012-07-28 Thread Joost Schouten (mailing lists)
You are probably @Persist'ing the value. Don't use persist or clear the persisted data on SUCCES and your TEXTAREA will show up cleared. If that does not help you, please share your code with us. Cheers, Joost On Jul 28, 2012, at 9:42 AM, Anbazhagan wrote: > Hi > > I am using textarea compon