Add a new template to the table wizard...

  •  05-14-2007, 8:20 AM

    Add a new template to the table wizard...

    hi,
     
    I'm attempting to add a new template to the table wizard.
     
    I've seen an old post on this website advising to alter the tab_table.ascx file. However the file described does not look like the file in my recent download of the software, and definitely doesn't look like i can add a table template...
     
    My file: /CuteSoft_Client/Cuteeditor/Dialogs/Tag/tag_table.ascx
     

    <%
    @ Control Inherits="CuteEditor.EditorUtilityCtrl" Language="c#" AutoEventWireup="false" TargetSchema="http://schemas.microsoft.com/intellisense/ie5" %>

    <fieldset><legend>[[TABLE]]</legend>

    <table class="normal">
    <tr>
    <td>[[CellSpacing]]:</td>
    <td><input type="text" id="inp_cellspacing" size="14" onkeypress="event.returnValue=IsDigit();"></td>
    <td>[[CellPadding]]:</td>
    <td><input type="text" id="inp_cellpadding" size="14" onkeypress="event.returnValue=IsDigit();"></td>
    </tr>
    <tr>

    etc:


    File described in post 13506.aspx. Clearly showing where i can alter table templates...
     
    <div id="templates" style='display:none'>
     <table summary="[[Table layout]]" class="normal">
      <tr>
       <td>1</td>
       <td>2</td>
      </tr>
      <tr>
       <td>3</td>
       <td>4</td>
      </tr>
     </table>
     <table summary="No Layout" class="normal">
      <tr>
       <td height="24"></td>
      </tr>
     </table>
     <table summary="Header, Left, Top Right, and Body" class="normal">
      <tr>
       <td valign="top" colspan="2" height="6"></td>
      </tr>
      <tr>
       <td valign="top" rowspan="2" height="12"></td>
       <td valign="top" height="6"></td>
      </tr>
      <tr>
       <td valign="top" height="12"></td>
      </tr>
     </table>
     
    etc...
     
     
    Can you advise where i'd now find the file in current versions.
     
    thanks,
     
    Michael H.
View Complete Thread