Hi,
In my build of the 17th (will try the latest build later), if I have selectOnFocus on true then the complete value gets selected when clicking with the mouse. I would expect that a mouseclick would not select the complete value but put the cursor at the click position.
I can reproduce on the smartclient demo:
http://localhost:8080/isomorphic/system/reference/SmartClient_Explorer.html#textItem
I tried on chrome 12 and FF5 on Linux ubuntu. What I do:
- I type something in the text box
- click on the js tab, click back on the view tab
- click on a specific location in the field, the complete value gets selected
Note it does not happen all the time, it happens every second time, so click, tab and then click will reproduce it.
gr. Martin
In my build of the 17th (will try the latest build later), if I have selectOnFocus on true then the complete value gets selected when clicking with the mouse. I would expect that a mouseclick would not select the complete value but put the cursor at the click position.
I can reproduce on the smartclient demo:
http://localhost:8080/isomorphic/system/reference/SmartClient_Explorer.html#textItem
Code:
isc.DynamicForm.create({ width: 300, fields: [ {title:"Item", type:"text", selectOnFocus: true} ] });
- I type something in the text box
- click on the js tab, click back on the view tab
- click on a specific location in the field, the complete value gets selected
Note it does not happen all the time, it happens every second time, so click, tab and then click will reproduce it.
gr. Martin
Comment