Problem with latest version in Firefox

Last post 04-09-2013, 7:20 AM by Kenneth. 3 replies.
Sort Posts: Previous Next
  •  04-03-2013, 8:35 PM 77149

    Problem with latest version in Firefox

    I'm getting the following error message when I try to load the InsertDocument dialog box in Firefox 20. Do not have the problem in IE9 or 10.

     

    Error when initialize uploader : Ox19a.getComputedStyle(...) is null

     

    Would like to use this updated version for my users who upgraded (unwittingly) to IE 10, but will stick with the old version until I can get this issue resolved.

     

    Rob 

  •  04-04-2013, 12:08 PM 77153 in reply to 77149

    Re: Problem with latest version in Firefox

    Hi xbobbr,

     

    Do you get the same problem on demo http://cutesoft.net/asp/EnableAll.asp? It works fine on my firefox 20.

     

    Regards,

     

    Ken 

  •  04-06-2013, 3:25 AM 77180 in reply to 77153

    Re: Problem with latest version in Firefox

    Ken -- reinstalled, and it worked fine. Then I went into cuteeditor_files\Configuration\Security\Default.config and changed the AllowUpload from true to false, and that caused the error. Furthermore, changing the setting for AllowCreateFolder from true to false does not remove the icon to create directories -- just displays a pop-up that says "Disabled". When you change AllowRename and AllowDelete properties to false, those items do not show up. For consistency in the interface , I would thing making so the icon does not show would be the way to go. Suppose I can conditionalize the image myself.

     

    Look forward to a solution, as I do not want clients creating directories, or uploading files using a tool other than the one I've already built.

     

    Rob Bristow

    Chief Technology Officer

    Classic Club Solutions, LLC 

  •  04-09-2013, 7:20 AM 77185 in reply to 77180

    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 as RSS news feed in XML