Author: abelevich
Date: 2007-09-07 13:00:52 -0400 (Fri, 07 Sep 2007)
New Revision: 2815
Modified:
trunk/ui/tree/src/main/resources/org/richfaces/renderkit/html/scripts/tree-selection.js
Log:
fix 582
Modified:
trunk/ui/tree/src/main/resources/org/richfaces/renderkit/html/scripts/tree-selection.js
===================================================================
---
trunk/ui/tree/src/main/resources/org/richfaces/renderkit/html/scripts/tree-selection.js 2007-09-07
15:57:14 UTC (rev 2814)
+++
trunk/ui/tree/src/main/resources/org/richfaces/renderkit/html/scripts/tree-selection.js 2007-09-07
17:00:52 UTC (rev 2815)
@@ -17,7 +17,11 @@
if (this.tree.input.value)
{
var e = $(this.tree.input.value);
- if (e) this.setSelection(e.object);
+ if (e)
+ {
+ this.inFocus = true;
+ this.setSelection(e.object);
+ }
}
},
Show replies by date