Re: Problem with latest version in Firefox

  •  04-09-2013, 7:20 AM

    Re: Problem with latest version in Firefox

    Hi xbobbr,

     

    The steps below shows you how to hide the create directory and upload button for the insert document dialog.

     

    1. Open file "\cuteeditor_files\Dialogs\InsertDocument.asp"

     

    2. Find section below

     

    <img src="../Images/newfolder.gif" id="btn_CreateDir" onclick="CreateDir_click();" title="<%= GetString("Createdirectory") %>" <% if CBool(AllowCreateFolder) then %> class="cursor dialogButton" <% else %> class="CuteEditorButtonDisabled" <% end if%> onmouseover="CuteEditor_ColorPicker_ButtonOver(this);"/>

     

    3. Change it to

     

    <img src="../Images/newfolder.gif" id="btn_CreateDir" onclick="CreateDir_click();" title="<%= GetString("Createdirectory") %>" <% if CBool(AllowCreateFolder) then %> class="cursor dialogButton" <% else %> class="CuteEditorButtonDisabled" <% end if%> onmouseover="CuteEditor_ColorPicker_ButtonOver(this);" style="visibility:hidden" /> 

     

    4. Find section below

     

    <fieldset id="fieldsetUpload" <%= Style_Display_None %> >

     

    5. Change it to

    '

    <fieldset id="fieldsetUpload" <%= Style_Display_None %> style="visibility:hidden" > 

     

    Regards,

     

    Ken 

View Complete Thread