Announcement

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

    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);

    #2
    Using build 8.2p 03-22, tested in Firefox or IE8

    Comment


      #3
      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

      Comment


        #4
        oh ok - I guess if the function was setDisabled() then it wouldve suppressed focus.

        Comment

        Working...
        X