Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    SC 8.2 selectValue() does not work in IE 9

    Hi,

    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();"});
    What can I do in order to select a text in IE?
    Regars Thomas

    #2
    We've added a fix to the stable 8.2 branch, so this will be fixed in the next nightly build on that branch. Please give it a try and let us know if you still see the problem
    Regards
    Isomorphic Software.

    Comment

    Working...
    X