Is there any way to get type of GWT widget?
for(Widget w : widgetList)
{
//if w is textbox type, read value and do something
}
Is there any way to get type of GWT widget?
for(Widget w : widgetList)
{
//if w is textbox type, read value and do something
}
for(Widget w : widgetList)
{
if(w instanceof textbox)
// read value and do something
}