Hello,

I have a flex table and some labels inside the table.
Initially I set the labels in the flex table -
Enter code here...

private FlexTable flexTable_Context = new FlexTable();
private Label myLabelID = new Label();
private Label myLabelIDVal = new Label();
int row = -1;
int col = -1;
flexTable_Context.setWidget(++row, ++col, myLabelID);
flexTable_Context.setWidget(row, ++col, myLabelIDVal);

myLabelID has the text to be shown while loading the page and value for 
myLabelIDVal is populated on some service call 
myLabelIDVal.setText(someValue);

This works fine.

Now I am trying to reassign a different value to myLabelIDVal by again 
using 
myLabelIDVal.setText("Different Value")
on some event.

And the label does not show the reassigned value.

My flexTable_Context is inside a TabPanel.

Any pointers on what am I missing?

Thanks,
Saurabh.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

Reply via email to