What steps will reproduce the problem?
<code>
dialogBox=new org.cobogw.gwt.waveapi.gadget.client.ui.DialogBox(true,true);
dialogBox.setHTML("<b>Caption</b>");
VerticalPanel vp=new VerticalPanel();
Label errorMsg=new Label();
errorMsg.setText("error msg");
org.cobogw.gwt.waveapi.gadget.client.ui.Button okBtn=new
org.cobogw.gwt.waveapi.gadget.client.ui.Button();
okBtn.setText("Okay");
okBtn.addClickHandler(new ClickHandler(){
@Override
public void onClick(ClickEvent event) {
dialogBox.hide();
}
});
vp.add(errorMsg);
vp.add(okBtn);
dialogBox.setWidget(vp);
</code>
What is the expected output? What do you see instead?
onClick is never called
What version of the product are you using? On what operating system?
cobogwave 1.1.1
win7
chrome
Please provide any additional information below.
Original issue reported on code.google.com by monstern...@gmail.com on 20 Jun 2010 at 1:02
Original issue reported on code.google.com by
monstern...@gmail.com
on 20 Jun 2010 at 1:02