disable some portions of template

Last post 07-24-2006, 1:52 PM by Adam. 1 replies.
Sort Posts: Previous Next
  •  07-24-2006, 6:03 AM 21181

    disable some portions of template

    when we are opening templates we are getting the table structure (i mean the border) i just don't want to show that, i just only want to edit some portion of template and all the other should not be edited (i know we can use unselectable="ON" and contenteditable="false")
    we can use those properties for <div> <span> i want to use it to table how can we?????
     
    Thanks in advance!!!
  •  07-24-2006, 1:52 PM 21197 in reply to 21181

    Re: disable some portions of template

    toocrazy007,
     
    unselectable="ON" and contenteditable="false" doesn't work for TABLE TAG.
     
    I suggest you do something like this:
     
    <table style="WIDTH: 320px; BORDER-COLLAPSE: collapse" cellSpacing=0 cellPadding=3 border=1>
        <tbody>
            <tr>
                <td><span unselectable="ON" and contenteditable="false">Hello World</span></td>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
            <tr>
                <td></td>
                <td></td>
                <td></td>
            </tr>
        </tbody>
    </table>

    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

View as RSS news feed in XML