From a8283054a8ae41752770266fd05397869b12f257 Mon Sep 17 00:00:00 2001 From: "guy.pyrzak%gmail.com" <> Date: Fri, 5 Sep 2008 02:34:43 +0000 Subject: Bug 448696: "(edit)" links should focus the text box and select all text in them Patch By Guy Pyrzak r=mkanat, a=mkanat --- js/field.js | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'js') diff --git a/js/field.js b/js/field.js index 15b5d4f79..69f2eeba9 100644 --- a/js/field.js +++ b/js/field.js @@ -161,6 +161,12 @@ function hideEditableField( container, input, action, field_id, original_value ) function showEditableField (e, ContainerInputArray) { YAHOO.util.Dom.setStyle(ContainerInputArray[0], 'display', 'none'); YAHOO.util.Dom.setStyle(ContainerInputArray[1], 'display', 'inline'); + var inputs = YAHOO.util.Dom.get(ContainerInputArray[1]).getElementsByTagName('input') + if( inputs.length > 0) { + // focus on the first field, this makes it easier to edit + inputs[0].focus(); + inputs[0].select(); + } YAHOO.util.Event.preventDefault(e); } -- cgit v1.2.3-24-g4f1b