You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
Hello, I have a newbie question to ask. Is there a function to display data on a panel? I am not sure how to display data on the panel, I am grabbing data from a database and I just want to be able to output it on the webpage. Maybe somethng like textoutputpanel object in swing? Any help is appreciated.
Adam T
unread,
Sep 25, 2006, 5:36:09 PM9/25/06
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Google Web Toolkit
If you just want a pure data dump then you can throw your data into a TextArea widget or a Label or any of the widgets that display text, e.g. if you have your data as a String you can just do the following:
TextArea dump = new TextArea(); dump.setText(your data);
If you want more formatting then you will have to look at "parsing" your data and placing into more controlled UI objects, e.g. a number of Labels in a HorizontalPanel perhaps.