vote up 0 vote down star

After a DojoX DataGrid row selection and subsequent filter of input data from a text box, why is the input text box focus lost? What's a proper way to return focus, so that a user can continue to enter data? The example below demonstrates this disruptive behavior, where focus is stolen from the input box and placed in the DataGrid.

An example can be found here.

Steps taken to demonstrate this:

  1. Select a row on DataGrid
    Result:
    Selected row is highlighted blue
  2. Type in input text box
    Result:
    Your keystroke(s) are entered before losing focus,
    Filter takes your keystrokes and fetches data,
    Focus is taken off of the text box
flag

73% accept rate

1 Answer

vote up 0 vote down

Focus is always lost on input items when you click on html outside of a textbox. (you can even see this on google or right here on stackoverflow)

To correct this set focus back in the onclick event if you want put focus back on the textbox.

(don't put focus back on the textbox though if it wasn't there in the first place :))

I'm not a Dojo expert, but I think the code ends up looking similar to this:

<input type="text" id="filter" onkeyup="doSearch(this)"/>

and the JS:

function resetFocus() {
 document.getElementById('filter').setFocus();
}

dojo.event.connect(yourControlId, "onclick", resetFocus);
link|flag
After the filter return the results and the grid is subsequently refreshed, setting focus on the onClick event does not work. The behavior remains exactly the same as the example in the question. I can put alert boxes in and know that the segment of code is being reached, but there must be some behind the scenes Dojo at work after the filter fires off that is prohibiting successful onClick usage. – happyappa Apr 25 at 2:41
"filter" is a method here, not the input box. What I'd expect to work, doesn't: grid.filter(x); dijit.focus(inputbox); – happyappa Apr 25 at 2:44
And what's weird in that example Dojo page: If you start typing in the input box initially, you don't lose focus as it searches on your keystrokes. It's only after you select a row in the DataGrid that this occurs. – happyappa Apr 25 at 2:46
Right, cause it's the clicks, not the table that's the issue. – altCognito Apr 25 at 3:16
Ha, yes. I'm thinking the grid.filter is an asynchronous call, so even though I set the focus back on the input box after the filter...the filter hasn't finished what it's doing and takes back the focus after the data is fetched and loaded. I'm just going to keep plugging at away at the API to see if I can hack the "right" solution. – happyappa Apr 25 at 12:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.