This is simple question but there's No answer found on the Internet.
Ok, some widgets such as CheckBox have a method called myCHeckBox.setFormValue(text);
so I take advantage of this method to store the unique ID into a CheckBox so that later on I just myCHeckBox.getFormValue();
to retrieve back the unique value.
However, there's no setFormValue
on GWT Panel?
So if we want to store a unique value into a Panel (for example, FlowPanel, VerticalPanel)? Then Which method can i use to do that?