Re: TextBox - cannot select text with mouse?

2013-02-23 Thread Kody
It turned out that it was indeed a CSS issue: I did some -moz-user-select: -moz-none; to prevent doubleclick highlight issues on some of my components. And (of course) this would also affect the inputs. I excluded input elements now and everything works fine again. 2013/2/22 Jens > Are you doi

Re: TextBox - cannot select text with mouse?

2013-02-22 Thread Jens
Are you doing any crazy things in your app? :-) Have you used Event.addNativePreviewHandler() somewhere and the handler maybe busts certain mouse events? Or overwritten any onBrowserEvent() methods somewhere in your outer App UI? Couldn't think of anything else that forbids you to select text o

Re: TextBox - cannot select text with mouse?

2013-02-22 Thread membersound
What I also noticed: I have a CellTable/DataGrid with EditTextCells, which so use input text fields. Within the onBrowserEvent() I can see that mouse clicks are received. BUT the cursor selection within text in the edit fields does not change. I can move the cursor by Arrow Keys, but not by Mouse

Re: TextBox - cannot select text with mouse?

2013-02-22 Thread Kody
CTRL+A for selecting the whole text works just as expected. So I can probably count css styles out. 2013/2/22 Manuel > Hey, > > maybe you styles have highlighted text in the same color as your > background color? > Some time ago I had a webpage where the selected text just looked like the > non

Re: TextBox - cannot select text with mouse?

2013-02-22 Thread Manuel
Hey, maybe you styles have highlighted text in the same color as your background color? Some time ago I had a webpage where the selected text just looked like the non selected... so maybe its just something in your css? Regards, Manuel Am Freitag, 22. Februar 2013 18:52:24 UTC+1 schrieb member

Re: TextBox - cannot select text with mouse?

2013-02-22 Thread membersound
Thanks, that's very strange. Could I somehow have *disabled *mouse interaction on a input field globally?? I just added a TextBox upmost of my application, and the behaviour is the same: neither mouse selection nor POS1 or END keys work. Am Freitag, 22. Februar 2013 15:48:21 UTC+1 schri

Re: TextBox - cannot select text with mouse?

2013-02-22 Thread Jens
I can select text in TextBox and ValueBox. Maybe a hidden div is above your TextBox? You can check that using your browsers developer tools. -- J. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscribe from this group and stop re

TextBox - cannot select text with mouse?

2013-02-22 Thread membersound
Hi, can anyone confirm that it is not possible to select the content of a TextBox using Mouse only? I found this isse from 2011 (http://code.google.com/p/google-web-toolkit/issues/detail?id=6468), but as there are no other complains, maybe I could be missing something? Do I have to set some pr