Hi,
selectValue() does not wor in IE 9, but works as expected in Chrome and Firefox. Please se this testcase:
What can I do in order to select a text in IE?
Regars Thomas
selectValue() does not wor in IE 9, but works as expected in Chrome and Firefox. Please se this testcase:
Code:
isc.DynamicForm.create({ ID: 'form', width: 300, fields: [ {title:"Item", type:"text", name: "text", value: "Does not select in IE"} ] }); isc.Button.create({ top: 60, title: "Select", click: "form.getField('text').selectValue();"});
Regars Thomas
Comment