BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Hi Steve,
Thanks for using Syncfusion products,
We have analyzed your query (“all I need to do is to stop anyone typing anything in to the control itself”).We can achieve your requirement using our existing property of RTE allowEditing (Enables/Disables the editing of the content in rte.) .Please refer the below code snippet.
myapp.Browse.RTE_render = function (element, contentItem) { var input = $("<textarea />"); input.attr('id','RTE'); input.attr("data-role","none"); input.appendTo($(element)); input.ejRTE({ value: contentItem.value, change: function (args) { contentItem.value = args.text; }, allowEditing: false }); }; |
To know more about available RTE properties, methods, events and its argument please refer the following link:
http://help.syncfusion.com/cr/js - This link showcases the list of Essential JS components and also includes API’s, Methods, and events and its arguments list supported by each corresponding components.
Please let us know if you have further queries,
Regards,
Sasikala Nagarajan