• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Problem with textarea

 
Greenhorn
Posts: 19
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

In my jsp i have two textarea fields(Mapped to two attributes present in the Form). I'm using <layout:textarea>. The user
is allowed to enter data in the two fields and save. After saving I need to display the same page with saved data in the two textarea fields.
But it is seen that after saving, the data is not getting displayed in the textarea.

I tried giving <c ut> to check whether the data was getting set in the Form's data object. I'm able to print the data with <c ut>. But I dont know why its not getting displayed in the textarea.

Can somebody resolve this

Thanks!
 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
In my jsp i have two textarea fields(Mapped to two attributes present in the Form). I'm using <layout:textarea>. The user
is allowed to enter data in the two fields and save. After saving I need to display the same page with saved data in the two textarea fields.
But it is seen that after saving, the data is not getting displayed in the textarea.
solution:use <html:textarea> instead of <layout:textarea> and then try.
 
reply
    Bookmark Topic Watch Topic
  • New Topic