• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

How to read contents of a different Textbox's on a Tab in a TabPanel

 
Ranch Hand
Posts: 120
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Hi Ranchers,

I am stuck with a thing here ! again...

I have a Tab-Panel with different Tab's containing form like fields.These fields have Textbox's which the user will fill.
I want to read the contents of TextBox...I tried going through the api...but...I think I am not on a right path because I didnt find a method to read the TextBox contents...

I tried

TabPanel tab = new TabPanel();
tab.add(formContentPanel,formName1);
tab.add(formContentPanel,formName2);

formContentPanel --> has TextBox's--> How to read the data in them...

Waiting for your reply....guys...

Rakesh

 
Bartender
Posts: 11497
19
Android Google Web Toolkit Mac Eclipse IDE Ubuntu Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
TextBox#getText() ?
 
Rakesh Chaudhary
Ranch Hand
Posts: 120
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator



Oops it was a Bad One....Man...actually I was reading it from a another Panel....Sorry....

reply
    Bookmark Topic Watch Topic
  • New Topic