Hi,
I'm using the FCK Editor 2.3 for one of my customers.
There are 3 things I would like to change in the behaviour of the editor:
1. Is there a way to disable drag-and-drop in the editor completely. My customer is having problems with the dragging of a-hrefs because there are some font tags being inserted.
2. Hou can I include a button in the toolbar which inserts a br-tag ?
3. How can I include a button in the toolbar which places a p-tag (around the current selection) ?
Regards,
Don
The Netherlands.
I'm using the FCK Editor 2.3 for one of my customers.
There are 3 things I would like to change in the behaviour of the editor:
1. Is there a way to disable drag-and-drop in the editor completely. My customer is having problems with the dragging of a-hrefs because there are some font tags being inserted.
2. Hou can I include a button in the toolbar which inserts a br-tag ?
3. How can I include a button in the toolbar which places a p-tag (around the current selection) ?
Regards,
Don
The Netherlands.
RE: 2 config questions
2. Take a look at any plugin and then call InsertHTML('<br>') in its ExecuteCommand function.
3. get the selected content (I think that I posted some time ago one such pair of functions) and then wrap it with a <p> </p> and call insertHtml.
RE: 2 config questions