Editor height

  •  03-04-2010, 2:31 PM

    Editor height

    hi,
     
     i am havinng some difficulties setting the editor height.
     
    i've tried it 2 ways:
     
      var editor1 = document.getElementById('CE_Editor3_ID');

        // Set the editor
        editor1.Height = "100";
     
     
    and  
     

    Dim editor3
    Set editor3 = New CuteEditor
    editor3.ID = "Editor3"
    editor3.Text = MessageField2
    editor3.FilesPath = "CuteEditor_Files"
    editor3.ConfigurationPath = "CuteEditor_Files/Configuration/AutoConfigure/minimal.config"
    editor3.DisableItemList="New, Save, Print, BackColor"
       editor3.RemoveServerNamesFromUrl = true
    editor3.URLType = "Absolute"
    editor3.Height = 100
    editor3.Draw()
     
    but neither of the methods work :(
     
    please advise. 
View Complete Thread