Wednesday, March 4, 2015

ListBox change event

Could some one please tell me why this doesn't generate any change events:

<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui">
<ui:style>
</ui:style>
<g:HTMLPanel>
<g:ListBox ui:field="category"></g:ListBox>

</g:HTMLPanel>

</ui:UiBinder> 

public class Invoices extends Composite {

private static InvoicesUiBinder uiBinder = GWT.create(InvoicesUiBinder.class);

interface InvoicesUiBinder extends UiBinder<Widget, Invoices> {
}

@UiField
ListBox category;

public Invoices() {
initWidget(uiBinder.createAndBindUi(this));
category.setVisibleItemCount(1);
category.addItem("--- Select ---");
category.addItem("H");
category.addItem("T");
category.addItem("S");

}

@UiHandler("category")
void categoryChange(ChangeEvent event) {

Window.alert("changed");
}


}


--
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+unsubscribe@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.

No comments:

Post a Comment