We are using the raw gwt component 'TextBox' (for performance reasons) in some cases.
Hence, on IE9, we are not able to select the text in the widget, not by dragging the mouse in it, not with ctrl+a, not with 'Select All' menu item...
In Firefox this works correctly. IE9: text not selectable.
What could be causing this?
We are on v8.3p_2012-11-30/Pro Deployment (built 2012-11-30).
thanks
Hence, on IE9, we are not able to select the text in the widget, not by dragging the mouse in it, not with ctrl+a, not with 'Select All' menu item...
In Firefox this works correctly. IE9: text not selectable.
What could be causing this?
Code:
com.google.gwt.user.client.ui.TextBox box = new com.google.gwt.user.client.ui.TextBox(); Canvas c = new Canvas(); c.addChild(box);
thanks
Comment