ShowToolBar property not working...

Last post 04-16-2010, 2:31 AM by Kenneth. 11 replies.
Sort Posts: Previous Next
  •  06-14-2008, 12:08 AM 41413

    ShowToolBar property not working...

    Hi:
    I try to hide the ToolBar and then show it again, using the Editor1.ShowToolBar false and then true.
    However, once it is hiden, it does not show up again (it's like the Editor1.ShowToolBar = true does not have effect).
     
    Any idea?
    Gus
  •  06-15-2008, 11:55 AM 41423 in reply to 41413

    Re: ShowToolBar property not working...

    Hi:
    Please, can someone confim is this a bug or not? The Editor1.ShowToolBar() is not working, once the toolbar was hidden.
     
    Regards;
    Gus
     
    gussabina:
    Hi:
    I try to hide the ToolBar and then show it again, using the Editor1.ShowToolBar false and then true.
    However, once it is hiden, it does not show up again (it's like the Editor1.ShowToolBar = true does not have effect).
     
    Any idea?
    Gus
  •  06-18-2008, 1:51 PM 41537 in reply to 41413

    Re: ShowToolBar property not working...

  •  08-26-2008, 2:59 AM 43268 in reply to 41537

    Re: ShowToolBar property not working...

    Hi Adam,
     
    I have the same problem with ShowToolBar - property. Once the toolbar is hidden (ShowToolBar= false) it wont appear again (ShowToolBar= true)!!!
     
    How does your example work?? After Click on ShowToolBar the Toolbar disappears, but clicking again has no effect.
     
    Hope this bug will be fixed soon - nead this feature for customer project!!
     
    Regards
    Klaus
  •  08-26-2008, 4:06 PM 43282 in reply to 43268

    Re: ShowToolBar property not working...

    Klaus,
     
    Can you change this property value in the following event?
     

    Editor.Init Event

    Occurs when Cute Editor is created.
     
    Keep me posted

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  08-28-2008, 3:16 PM 43352 in reply to 43282

    Re: ShowToolBar property not working...

    Hi Adam,
     
    I changed the property in the Init Event, but with the same result. Once set to ShowToolBar = false, it wont become visible again...
    You can reproduce it very easily, just a page with editor and two buttons "show" and "hide".
     
    Regards
    Klaus
     
  •  08-28-2008, 3:20 PM 43353 in reply to 43352

    Re: ShowToolBar property not working...

    Klaus,
     
    We are investigating this issue. At the same time, please use AutoConfigure="none" as a work-around.

    asp.net Chat http://cutesoft.net/ASP.NET+Chat/default.aspx
    Web Messenger: http://cutesoft.net/Web-Messenger/default.aspx
    asp.net wysiwyg editor: http://cutesoft.net/ASP.NET+WYSIWYG+Editor/default.aspx
    asp wysiwyg html editor: http://cutesoft.net/ASP
    asp.net Image Gallery: http://cutesoft.net/ASP.NET+Image+Gallery/default.aspx
    Live Support: http://cutesoft.net/live-support/default.aspx

  •  08-29-2008, 4:40 AM 43368 in reply to 43353

    Re: ShowToolBar property not working...

    Hi Adam,
     
    thanks so lot, with this workaround it works fine.
     
    Regards
    Klaus
  •  04-15-2010, 2:15 AM 60126 in reply to 43368

    Re: ShowToolBar property not working...

    just wondering if this bug has been fixed as I experienced the same issue.
    the worse thing is in v6.6, evenif I set showToolbar="false", it still appear in the web page.
    This is a very serious issue, can some help? thx
     

    <CE:Editor ID="cmsInformation" runat="server" ShowCodeViewToolBar="False" ConfigurationPath="~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/MyTool.config"

    Width="100%" ShowPreviewMode="False" ResizeMode="None" EditorOnPaste="PastePureText"

    EnableBrowserContextMenu="false" ThemeType="Office2003" 

    ShowToolBar="false"

     >

    </CE:Editor>

  •  04-15-2010, 7:41 AM 60134 in reply to 60126

    Re: ShowToolBar property not working...

    Dear wolf11th,
     
    Please remove ConfigurationPath="~/CuteSoft_Client/CuteEditor/Configuration/AutoConfigure/MyTool.config", change your code to:
    <CE:Editor ID="Editor1" runat="server" ShowCodeViewToolBar="False"  Width="100%" ShowPreviewMode="False" ResizeMode="None" EditorOnPaste="PastePureText" EnableBrowserContextMenu="false" ThemeType="Office2003" ShowToolBar="false">
    </CE:Editor>
    I have tested this snippet, it works.
     
    Regards,
    Eric
     

     

     

  •  04-15-2010, 6:30 PM 60161 in reply to 60134

    Re: ShowToolBar property not working...

    Hi Eric,
    thx for your reply
    if I remove  the configurationPath, how can I customise the toolbar?
    The idea is on the back end, our system check the user level, if the user is read only, it needs to disable the editor. If not, it will still show the user the toolbar. So I think I still need to specify the tool configuration path.
     
    I found a work around: when I want to disable the editor, I have to:
     
    cmsInformation.ConfigurationPath = ""
    cmsInformation.ShowToolBar = False
    cmsInformation.Enabled = False
     
    this is still annoying as you cannot just set the showtoolbar = false without taking of the toolbar customisation. either, it doesn't make sence that if I disable the editor what is the point to show the user the toolbar as it's disabled as well?
     
    hardly to say it's a bug, but for user's convienience, can you improve it at next version?
     
    thx again
     
  •  04-16-2010, 2:31 AM 60166 in reply to 60161

    Re: ShowToolBar property not working...

    wolf11th:
    Hi Eric,
    thx for your reply
    if I remove  the configurationPath, how can I customise the toolbar?
    The idea is on the back end, our system check the user level, if the user is read only, it needs to disable the editor. If not, it will still show the user the toolbar. So I think I still need to specify the tool configuration path.
     
    I found a work around: when I want to disable the editor, I have to:
     
    cmsInformation.ConfigurationPath = ""
    cmsInformation.ShowToolBar = False
    cmsInformation.Enabled = False
     
    this is still annoying as you cannot just set the showtoolbar = false without taking of the toolbar customisation. either, it doesn't make sence that if I disable the editor what is the point to show the user the toolbar as it's disabled as well?
     
    hardly to say it's a bug, but for user's convienience, can you improve it at next version?
     
    thx again
     
     
     
    Regards,
     
    Ken
View as RSS news feed in XML