Table border does not show in normal mode

Last post 02-18-2009, 5:07 PM by ibizard. 4 replies.
Sort Posts: Previous Next
  •  02-15-2009, 3:33 PM 48810

    Table border does not show in normal mode

    Table borders are not showing up in normal/design mode.  When i switch to preview i can see my table borders just fine, however in normal mode they are not showing up at all.  This is a big problem for clients trying to design.  You can use a simple code such as the following to see what I mean.
     
    <table cellpadding="0" cellspacing="0" style="border: 5px solid #cc0000">
    <tr><td>
    My Test
    </td></tr>
    <tr><td>
    Your Test
    </td></tr>
    </table>
     
    Thank you.
  •  02-16-2009, 11:15 AM 48857 in reply to 48810

    Re: Table border does not show in normal mode

    ibizard,
     
    Please set the following property to true then try again.
     

    Editor.ToggleBorder Property

    Specify the ToggleBorder state

     

    Example Code

    <?php
             $editor=new CuteEditor();
             $editor->ID="Editor1";
             $editor->Text="Type here";
             $editor->FilesPath="CuteEditor_Files";
             $editor->ToggleBorder=false;
             $editor->Draw();
             $editor=null; 

             //use $_POST["Editor1"]to catch the data
    ?>

     

     


    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

  •  02-16-2009, 1:08 PM 48876 in reply to 48857

    Re: Table border does not show in normal mode

    Adam,
     
    Thank you for your reply, but that didn't work.  Can you get it to work with just a simple example? I can't even get it to work with just a simple example like i gave above.  Just in case i'm missing something in my $editor definition here is what i have in my code:
     
    //***********************************************************

       $editor=new CuteEditor();
       $editor->ID="Editor1";
       $editor->Height=600;
       $editor->Width=650;
       $editor->ImageGalleryPath = "/images";
       $editor->URLType = "Absolute";
       $editor->CustomAddons = "<img title=\"Add Coupon Section\" class=\"CuteEditorButton\" onmouseover=\"CuteEditor_ButtonCommandOver(this)\" onmouseout=\"CuteEditor_ButtonCommandOut(this)\" onmousedown=\"CuteEditor_ButtonCommandDown(this)\" onmouseup=\"CuteEditor_ButtonCommandUp(this)\" ondragstart=\"CuteEditor_CancelEvent()\" Command=\"MyCmd\" src=\"CuteEditor_Files/Images/coupon.gif\" />";
       $editor->ConfigurationPath="/CuteEditor_Files/Configuration/myTools.config";
       $editor->RemoveTBODYTag=true;
       $editor->BreakElement="Br";
       $editor->ToggleBorder=true;
       $editor->Text=$html;
       $editor->FilesPath="CuteEditor_Files";
       $editor->Draw();
      
       $ClientID=$editor->ClientID();

       $editor=null;
    //***************************************************************
     
    Thanks again for your time and reply.
  •  02-18-2009, 3:43 PM 48964 in reply to 48876

    Re: Table border does not show in normal mode

    Sorry, I mean set this propery to false.
     
    1. $editor->ToggleBorder=false;  
    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

  •  02-18-2009, 5:07 PM 48974 in reply to 48964

    Re: Table border does not show in normal mode

    Adam-
     
    Thank you! Looks great.
View as RSS news feed in XML