Hi,
we are using a textitem with a change event and the selectOnClick-option set to true. In the change-function we have to call the markForRedraw because the form could be changed by the change-method. In the example i have simplified the problem.
If you click in the textitem it isn't possible to write a sentence or a word because the selectOnClick is always firing. I think this is a false behavior and should not fire again.
We currently using SmartClient_v100p_2014-10-21_Pro and it happens in all browsers.
we are using a textitem with a change event and the selectOnClick-option set to true. In the change-function we have to call the markForRedraw because the form could be changed by the change-method. In the example i have simplified the problem.
If you click in the textitem it isn't possible to write a sentence or a word because the selectOnClick is always firing. I think this is a false behavior and should not fire again.
We currently using SmartClient_v100p_2014-10-21_Pro and it happens in all browsers.
Code:
isc.DynamicForm.create({
"ID" : "theForm",
"readOnlyDisplay" : "static",
"fields" :
[{
"ID" : "textitem",
"changed" : function (p1, p2, p3){
theForm.markForRedraw();
},
"name" : "textitem",
"title" : "name",
"type" : "text",
"selectOnFocus" : false,
"width" : 300,
"selectOnClick" : true
}
],
"values" : {
"textitem" : "start to type"
}
})

Comment