Please can someone explain what I'm doing wrong here? or is it possible a bug?
all that I have in my document is the following code below...
All that I am doing is putting 10 CK editors on the page. The problem is only two display? I have been scratching my head over this for days.
Please can someone help?
all that I have in my document is the following code below...
<script type="text/javascript" src="ckeditor/ckeditor.js"></script> <%for i = 1 to 10%> <form name="frmTesting<%=i%>" id="frmTesting<%=i%>" method="post" action="YourContentUpdateProc.asp"> <textarea name="desc<%=i%>" class="ckeditor" cols="50" rows="10">test <%=i%></textarea> <script type="text/javascript"> CKEDITOR.replace( 'desc<%=i%>' ); CKEDITOR.add </script> <input type="submit" name="btnSubmit" value="Save Edit"> </form> <%next%>
All that I am doing is putting 10 CK editors on the page. The problem is only two display? I have been scratching my head over this for days.
Please can someone help?
Re: CK Editor Bug?
CKEDITOR.replace( 'desc<%=i%>' );
CKEDITOR.add
</script>
You have a javascript syntax error, what exactly are you expecting CKEDITOR.add to do?
<script type="text/javascript">
CKEDITOR.replace( 'desc<%=i%>' );
</script>
Does that work?
Re: CK Editor Bug?
Nahh that didn't work
Can you add 10 ck editors in one page all in their own form?
Re: CK Editor Bug?
Re: CK Editor Bug?