Hi,
i need to use ckeditor in apache cocoon. basically, cocoon files are xsl files, when i am trying to use
<textarea id="CKEditor12" name="CKEditor12"></textarea>
<script type="text/javascript">
CKEDITOR.replace(
'CKEditor12',
{
toolbar : 'Basic',
uiColor : '#9AB8F3'
});
</script>
the result is blank area on the webpage where i placed CKEditor12 textarea component.
in seperate test module, i did the things as per developer guide and there it is showing textarea component correctly, but when i am trying to do the same thing in xsl file, textarea is coming blank.
is there any more configuration to user ckeditor in xsl. Please suggest. Thanks
i need to use ckeditor in apache cocoon. basically, cocoon files are xsl files, when i am trying to use
<textarea id="CKEditor12" name="CKEditor12"></textarea>
<script type="text/javascript">
CKEDITOR.replace(
'CKEditor12',
{
toolbar : 'Basic',
uiColor : '#9AB8F3'
});
</script>
the result is blank area on the webpage where i placed CKEditor12 textarea component.
in seperate test module, i did the things as per developer guide and there it is showing textarea component correctly, but when i am trying to do the same thing in xsl file, textarea is coming blank.
is there any more configuration to user ckeditor in xsl. Please suggest. Thanks