Topbar
Topbar
Sign in
|
Join
|
Client Center
Home
Products
Client Center
Contact
Purchase
Support forums
»
Products
»
Cute Editor for .NET
»
Re: Command 'hyperlink' Is Not Supported Or Not Implemented
Re: Command 'hyperlink' Is Not Supported Or Not Implemented
10-29-2009, 11:46 PM
cutechat
Joined on 07-22-2004
Posts 2,332
Re: Command 'hyperlink' Is Not Supported Or Not Implemented
Reply
Quote
Hi,
You can put this after editor :
function CuteEditor_OnCommand(editor,command,ui,value)
{
//handle the command by yourself
if(command=="hyperlink")
{
InsertHyperlink();
return true;
}
return false;
}
Regards,
Terry
View Complete Thread