After hours and hours of coding and debugging, here is functional integration of CKEditor (I tried CKEditor 4.5.10) to SmartClient 11, I hope it will help somebody. In attached files you will find sources, example of use:
Code:
... this.exampleForm = isc.DynamicForm.create({ ID : "idForm", fields : [ { name : "fieldName", ID : "fieldID", titleOrientation : "top", title : "Any title", showTitle : true, _constructor : "IscCkeditorItem", height : "500", width : "*", autoDraw : false, colSpan : 2 }] }); ... this.exampleForm.show(); ...
Comment