Rank: Advanced Member Groups: Member
Joined: 8/24/2007 Posts: 130
|
Hi,
I have recently started to use the Flyout control. The flyout is used to display a UserControl that contains a text box. On IE, I am able to write to the text box with no problem, however on Firefox, the Text Box click event does not seem to be firing, as I am unable to enter text.
I am using build 8.0.34.2
I would be grateful for any assistance here.
Regards, Phil
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, We couldn't find a reliable way to have textbox inside the flyout popup either. The root of the problem is FireFox considers an event to be entirely canceled for all affected elements when the event is canceled on a parent element. We need to cancel click event on the flyout popup level so that it does not populate to the document level. A working, but not perfect workaround is to put a div around your textbox with the following code:
Code: HTML/ASPX
<div onmousedown="document.getElementById('client_id_of_the_textbox').focus();">
your text box here
</div>
This will focus the textbox when you click it thus allow you to enter text. However other features such as selecting by mouse still won't work. Thanks!
|
Rank: Advanced Member Groups: Member
Joined: 8/24/2007 Posts: 130
|
Thanks, that has solved the issue for me...
Phil
|