Client Side Problem in firefox 4.0.1
In the Project , I Used SmartGWT from beginning, after involved MVP Pattern. I tryed out mixing the GWT and SmartGWT
I find a problem that GWT UI Element "Textbox" can't input text , but the ListBox and Radio is working properly
is this a smargwt event binding issue?
Here is the sample code:
sorry for my poor english.
hmm....may be it's browse compatibility problem ,work propertly in ie and chrome.
the console print as follows: Textitem unable to get a pointer to this item's focus
In the Project , I Used SmartGWT from beginning, after involved MVP Pattern. I tryed out mixing the GWT and SmartGWT
I find a problem that GWT UI Element "Textbox" can't input text , but the ListBox and Radio is working properly
is this a smargwt event binding issue?
Here is the sample code:
Code:
private FormPanel containerPanel = new FormPanel();
public TextItem(String labelName,String formName) {
TextBox valueBox = new TextBox();
valueBox.setMaxLength(50);
valueBox.setName(formName);
containerPanel.add(valueBox);
}
hmm....may be it's browse compatibility problem ,work propertly in ie and chrome.
the console print as follows: Textitem unable to get a pointer to this item's focus
Comment