-
12 Sep 2012 1:56 AM #1
DoubleClick on Disabled TexField doesn't work in Firefox
DoubleClick on Disabled TexField doesn't work in Firefox
Tested on Firefox 15.0.1; everything's ok when tested on Internet Explorer or Chrome.
Please see my sample code:
Code:public class TestFirefox implements EntryPoint { public void onModuleLoad() { TextField tf = new TextField(); tf.setEnabled(false); tf.addDomHandler(new DoubleClickHandler() { public void onDoubleClick(DoubleClickEvent event) { AlertMessageBox am = new AlertMessageBox("OK", "DoubleClicked"); am.show(); } }, DoubleClickEvent.getType()); RootPanel.get().add(tf); } }
-
15 Sep 2012 10:29 PM #2
Any news from the Sencha staff ?
Any news from the Sencha staff ?
I think this is a very important bug, also very easy to detect.
It can jeopardize the usability of a GXT Application on a very popular browser like Firefox is.
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote