From f0577622a9561413b15ae65895143aa27643d0e6 Mon Sep 17 00:00:00 2001 From: Adam Young Date: Mon, 21 Feb 2011 17:28:06 -0500 Subject: search filter focus afdter a search loads, focus moved to the search filter text box, tyhe most likely thing that the user will want to change on the page. https://fedorahosted.org/freeipa/ticket/983 --- install/ui/search.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'install/ui/search.js') diff --git a/install/ui/search.js b/install/ui/search.js index 11aa4f756..101347f98 100644 --- a/install/ui/search.js +++ b/install/ui/search.js @@ -88,11 +88,20 @@ IPA.search_widget = function (spec) { var search_filter = $('span[name=search-filter]', that.container); + $('input[type=text]',search_filter).keypress( + function(e) { + /* if the key pressed is the enter key */ + if (e.which == 13) { + that.find(); + } + }); var button = $('input[name=find]', search_filter); that.find_button = IPA.button({ 'label': IPA.messages.buttons.find, 'icon': 'ui-icon-search', - 'click': function() { that.find(); } + 'click': function() { + that.find(); + } }); button.replaceWith(that.find_button); @@ -247,6 +256,7 @@ IPA.search_widget = function (spec) { } else { summary.text(data.result.summary); } + $('.search-filter input[type=text]', that.container).focus(); } function on_error(xhr, text_status, error_thrown) { -- cgit