I have integrated CuteEditor in an app using Javascript API.
My question is, how do I go about adding or removing button from it.
My code is:
<%
Thanks,
Brandon
dim content
content=pagebody
editor.ID = "Editor1"
editor.Text = content
editor.FilesPath = "CuteEditor_Files"
editor.AutoConfigure = "EnableAll"
editor.StyleDropDownMenuNames = temp_styledropdownMenuNames
editor.StyleDropDownMenuList = temp_styledropdownMenuList
editor.CodeSnippetDropDownMenuNames = temp_snippetDropDownMenuNames
editor.CodeSnippetDropDownMenuList = temp_snippetDropDownMenuList
editor.ImagesDropDownMenuNames = temp_imagesDropDownMenuNames
editor.ImagesDropDownMenuList = temp_imagesDropDownMenuList
editor.LinksDropDownMenuNames = temp_linksDropDownMenuNames
editor.LinksDropDownMenuList = temp_linksDropDownMenuList
editor.EditorBodyStyle = "table { font:normal 12px arial; }"
editor.EditorWysiwygModeCss = "asp.css"
editor.Draw()
%>