<textarea class="ckeditor" cols="80" id="PageContent" name="PageContent" rows="10">textarea>
...
<script type="text/javascript">
//<![CDATA[
CKEDITOR.replace( 'PageContent',
{
// extraPlugins : 'uicolor',
// uiColor: '#000000',
toolbar :
[
[ 'Source' ],
[ 'Cut','Copy','Paste','PasteText','PasteFromWord' ,'-' ,'Undo','Redo' ],
[ 'Bold', 'Italic','Underline', '-', 'NumberedList', 'BulletedList', '-', 'Link', 'Unlink' ],
[ 'TextColor','BGColor','-','RemoveFormat','Format','Image']
]
} );
//]]>
</script>
Sat, 11/26/2011 - 14:31
#1

Re: Problems integrating CKFinder (its NOT easy!!)
<!-- This <div> holds alert messages to be display in the sample page. --> <div id="alerts"> <noscript> <p> <strong>CKEditor requires JavaScript to run</strong>. In a browser with no JavaScript support, like yours, you should still see the contents (HTML data) and you should be able to edit it normally, without a rich editor interface. </p> </noscript> </div> <form action="sample_posteddata.php" method="post"> <textarea cols="80" id="editor1" name="description" rows="10"><html><p>Dit is een <strong>voorbeeld tekst</strong>. nu maak ik gebruik van de editor genoemd <a href="http://ckeditor.com/">CKEditor</a> om meer functionaliteit aan het tekst gebied te brengen</p></body></html> <?php echo(htmlspecialchars($result['description'],ENT_QUOTES));?></textarea> <script type="text/javascript"> //<![CDATA[ CKEDITOR.replace( 'editor1', { fullPage : true, extraPlugins : 'docprops' }); //]]> </script> <p> <input type="submit" value="Accepteer" /> </p> </form>Re: Problems integrating CKFinder (its NOT easy!!)
dont you need to call CKFinder in any way?
Re: Problems integrating CKFinder (its NOT easy!!)
http://docs.cksource.com/CKFinder_2.x/D ... xample_3_2
Re: Problems integrating CKFinder (its NOT easy!!)