Search

You searched for the word(s):
Showing page 2 of 4 (39 total posts) < 1 second(s)
  • Re: EditorWysiwygModeCss question

    This did not answer my question. In any case, as the editor page is in the same folder (called site) I would not need to add ''/site/'' &nbsp; I suppose my question could also be asked in this way: &nbsp; Is it possible to get the value for&nbsp;EditorWysiwygModeCss from a database or does there have to be a physical file? &nbsp; Thank ...
    Posted to Cute Editor for .NET (Forum) by the4bs on August 23, 2006
  • EditorWysiwygModeCss question

    Currently I have EditorWysiwygModeCss set as below. EditorWysiwygModeCss = ''~/styles/previewpage.css'' &nbsp; However, I would like to dynamically change the styles in the toolbar dropdown&nbsp;based on the selected item of another dropdown in the menu bar. &nbsp; I would also like to get the style from a database. The following page ...
    Posted to Cute Editor for .NET (Forum) by the4bs on August 18, 2006
  • problem - CleanUpHTMLCode() and CleanUpMicrosoftWordHTML()

    &nbsp; Hi, &nbsp; I am having a problem with CleanUpHTMLCode() and CleanUpMicrosoftWordHTML(). &nbsp; If I have CleanUpHTMLCode() or CleanUpMicrosoftWordHTML() enabled on Save(), the following code is changed after it is saved and the editor reloaded: &nbsp; Original &lt;p class=h1Training&gt;THIS IS A HOLDING PAGE. DO NOT EDIT. ...
    Posted to Cute Editor for .NET (Forum) by the4bs on August 8, 2006
  • Re: remove items from ContextMenu

    Thank you for the response. &nbsp; That was pretty straight forward. &nbsp; In addition to removing some items from the ContextMenu, I would like to remove the Style option from what I think is the relative menu. In particular, I would like to remove the style option from the Image, Table and Link&nbsp;context menus. &nbsp; Can this be ...
    Posted to Cute Editor for .NET (Forum) by the4bs on August 7, 2006
  • remove items from ContextMenu

    Hi, &nbsp; On right click in the editor a ContextMenu appears. Is it possible to&nbsp;remove some items&nbsp;that appear on the ContextMenu? &nbsp; Thank you.
    Posted to Cute Editor for .NET (Forum) by the4bs on August 4, 2006
  • Urgent - Getting DropDownList value

    Hi, &nbsp; &nbsp; I have a custom dropdownlist in the Editor toolbar. It was created with code like this: &nbsp; Protected Sub PopulateTemplateDropDown() &nbsp; &nbsp;&nbsp;&nbsp; Dim PageID, NewPage As Integer&nbsp;&nbsp;&nbsp; PageID = Session(SessTypes.TreeViewID)&nbsp;&nbsp;&nbsp; If (Request.QueryString(''Edit'')) = Nothing ...
    Posted to Cute Editor for .NET (Forum) by the4bs on July 26, 2006
  • Get toolbar DropDownList value into database

    Hi, &nbsp; I have a situation where I need to submit the editor content and the SelectedItem.Value of a dropdownList in the toolbar to a database. The Save Button fires some server side code to do this. &nbsp; &nbsp; I can get the content from the editor HTML box into the database without problem (HTML = Editor.Text) &nbsp; However, I ...
    Posted to Cute Editor for .NET (Forum) by the4bs on July 25, 2006
  • Re: dropdown SelectedValue

    Thank you. &nbsp; Your suggestion worked. I don't know why I assumed I needed to use a RichDropDownList. &nbsp; Anyway, this is the code that I am now using, which works: &nbsp; &nbsp; Dim container As System.Web.UI.Control&nbsp;&nbsp;&nbsp; container = Editor1.ToolControls(''custom'').Control &nbsp;&nbsp;&nbsp; Dim ddlTemplates As ...
    Posted to Cute Editor for .NET (Forum) by the4bs on July 25, 2006
  • dropdown SelectedValue

    Hi, I am populating a dropdown in the Editor toolbar using the red code below: &nbsp; The dropdownlist is populating ok, but I want to be able to display the SelectedValue based on a value obtained from the database. So instead of always displaying the caption ''Template'' I want to display the name of the template that is brought out of the ...
    Posted to Cute Editor for .NET (Forum) by the4bs on July 24, 2006
  • Re: bookmarks in dropdownlist

    Thank you very much! - that worked. &nbsp; For the benefit of anyone else who would like to do this, I used this code: &nbsp; var editor1 = window.opener.document.getElementById('CE_ctl00_maincontent_Editor1_ID');&nbsp;&nbsp; var editdoc = editor1.GetDocument();&nbsp;&nbsp; var count; &nbsp;&nbsp;&nbsp; for(count = 0; count &lt; ...
    Posted to Cute Editor for .NET (Forum) by the4bs on July 20, 2006