Announcement

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

  • acarur01
    replied
    oh ok - I guess if the function was setDisabled() then it wouldve suppressed focus.

    Leave a comment:


  • Isomorphic
    replied
    We're not reproducing this. You can put focus into the text item (this is expected) but you can't edit the value.
    We tested in both Firefox and IE8 with the build you mention

    Leave a comment:


  • acarur01
    replied
    Using build 8.2p 03-22, tested in Firefox or IE8

    Leave a comment:


  • acarur01
    started a topic Dynamic Form canEdit does not work!

    Dynamic Form canEdit does not work!

    With the sample, you'll notice that calling setCanEdit on the form does not affect the text item - boolean and date on the other hand works fine.

    Code:
    
    isc.DynamicForm.create({
        width: 300,ID:"testForm",
        fields: [
            {title:"Item", type:"text"} ,
            {title:"boo", type:"boolean"},
            {title:"date",type:"date"}
    
        ]
    });
    
    testForm.setCanEdit(false);
Working...
X