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