Opened 9 years ago
Closed 9 years ago
#14727 closed defect (invalid)
FF: Cannot click properly on dijit form widgets when dialog is draggable
Reported by: | Eric Poulin | Owned by: | Eric Poulin |
---|---|---|---|
Priority: | undecided | Milestone: | tbd |
Component: | Dijit - Form | Version: | 1.7.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
If I have a dijit.form.TextBox?, such as a dijit.form.ValidationTextBox? on a dialog (either dijit.Dialog or dojox.widget.Dialog) that has the draggable:true attribute, when I click to focus on the text box, the cursor will not show or move to where I am clicking. This happens only in FireFox?.
Change History (4)
comment:2 Changed 9 years ago by
Component: | Dijit → Dijit - Form |
---|---|
Owner: | set to Douglas Hays |
This sounds familiar, like #14274, but I guess it's different. Doug, can you take a look?
comment:3 Changed 9 years ago by
Owner: | changed from Douglas Hays to Eric Poulin |
---|---|
Status: | new → pending |
Please append a testcase AND try on Firefox 10. I edited dijit/tests/test_Dialog.html, changed the unmoveable test to say draggable:true, added a TextBox? to receive initial focus and then added a ValidationTextBox? widget as a second INPUT, loaded in Firefox 10 on Win7, and it works fine.
comment:4 Changed 9 years ago by
Resolution: | → invalid |
---|---|
Status: | pending → closed |
Because we get so many tickets, we often need to return them to the initial reporter for more information. If that person does not reply within 14 days, the ticket will automatically be closed, and that has happened in this case. If you still are interested in pursuing this issue, feel free to add a comment with the requested information and we will be happy to reopen the ticket if it is still valid. Thanks!
Workaround: after calling show() on the dialog, set draggable to false:
dijit.byId("myDialog").show();
setTimeout("dijit.byId('mDialog').set('draggable', false)",500);