Hi all,
first off, congratulations to all that have helped created such a power piece of code - very nice...
Okay, I am using asp.net 2.0 c sharp... I have two questions that I am hoping someone can assist with.
1) How do I remove some of the functionality - I only want the text editing facilities (bold, font etc)
2) I have placed the control inside a gridview, and I am using it as a input field for a news letter - how do I obtain the entered text and store it in a variable.
Sorry if these are really simple q's, but as I mention in my heading, I am fresh at all this..
Regards
first off, congratulations to all that have helped created such a power piece of code - very nice...
Okay, I am using asp.net 2.0 c sharp... I have two questions that I am hoping someone can assist with.
1) How do I remove some of the functionality - I only want the text editing facilities (bold, font etc)
2) I have placed the control inside a gridview, and I am using it as a input field for a news letter - how do I obtain the entered text and store it in a variable.
Sorry if these are really simple q's, but as I mention in my heading, I am fresh at all this..
Regards

Re: Newbie wanting some guidance
http://docs.fckeditor.net/FCKeditor_2.x ... on/Toolbar
Re: Newbie wanting some guidance
JavaScript code (hacked together from the API documentation...)
var oEditor = FCKeditorAPI.GetInstance('InstanceName') ; var oContent = oEditor.GetData() ;