We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can you please let me know if there is a setting to disable the complete control. I had tried with 'readonly':true, but not disabling the control.
The text was updated successfully, but these errors were encountered:
it's simple, just add following code in the end of "editor.js". (after $.fn.editor function):
$.fn.disableEditor = function(){ $(this).data('editor').attr('contenteditable' , false); }
Sorry, something went wrong.
it's simple, just add following code in the end of "editor.js". (after $.fn.editor function): $.fn.disableEditor = function(){ $(this).data('editor').attr('contenteditable' , false); }
Similarly, if we want to check if the textvalue is empty, how do we write a function ? @pyhp2017 Thank You.
No branches or pull requests
Can you please let me know if there is a setting to disable the complete control.
I had tried with 'readonly':true, but not disabling the control.
The text was updated successfully, but these errors were encountered: