I'm using ckeditor and I have a problem. The problem is this, I have to open a table dialog to create some table into my ckeditor textarea. In the ckeditor, we can use this code :
items : [ 'Table' ]
But I made a button and script outside the editor. like this :
<script>
function somefunction() {
CKEDITOR.instances['editor1'].openDialog('table');
}
</script>
<button onclick="somefunction();">click</button>
When I click the button, I can open the table dialog. But there is a error message. The message is "null is null or not an object". How can I modify the script code to delete the message? Please help me...