Hi there,
I have the following question regarding Radio Buttons. I have added a
RadioButton to an inner class as follows:
class ServerStatsUpdater extends AbstractAsyncHandler
{
public void handleFailure(Throwable caught){
}
public void handleSuccess(Object result){
for (int i = 0; i<data.itemNameArrayList.size();i++)
{
categoryList.addItem(data.itemNameArrayList.get
(i).toString());
String radioButtonText = data.itemNameArrayList.get
(i).toString();
editItemsRadioPanel.add(new RadioButton("group",
radioButtonText));
}
}
}
I now need to add a check listener to the radio button created above.
Can anyone please tell me how this is possible?
Regards,
Jack
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---