I want to customize the InnovaEditor toolbar in my ASPRunner project. I have read the InnovaEditor docs and see the code changes I need to make, what is not clear to me is how to apply this in ASPRunner. Has anyone done this or can you point me in the right direction.
Here is a sample code snippet that would go in a standard HTML page to customize the toolbar:
<script>
var oEdit1 = new InnovaEditor("oEdit1");
oEdit1.useTab=false;
oEdit1.REPLACE("txtContent");
</script>
In this example "txtContent" is the name of the text area where the editor is applied. I am not a programmer but I can get this to work in a regular HTML page but not sure where in ASPRunner to place this code on the edit or add page (or in an event) to have it behave as expected.
Can anyone help?