Hi,
This is my requirement, i want to display the dialogBox, and set
productWidget into the dialogBox.
But when i create productWidget it has to get the list of products (RPC) and
disaplay them in the dropDown list.
How to make rpc from the widget when it get creates ??
This is my code,
public class MySampleClass implements EntryPoint {
.
.
.
.
.
DialogBox dialogBox = new DialogBox();
dialogBox.setText("Create Product");
VerticalPanel dialogContents = new VerticalPanel();
dialogBox.setWidget(dialogContents);
dialogBox.show();
// create productWidget and add it to the dialog box.
productWidget = new ProductWidget();
dialogContents.add(productWidget);
.
.
.
.
}
public class ProductWidget extends Composite {
public ProductWidget() {
.
.
}
}
Please any suggestions ?
--
Thanks & Regards
*S a n t o s h k u m a r . k
*
--
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.