[CLOSED] How to add a HTML table to a Panel control dynamically

  1. #1

    [CLOSED] How to add a HTML table to a Panel control dynamically

    Hi,
    Can you please show me an example on how to insert a HTML table such as "<table></table>" to an ext.Panel control dynamically in the codebehind?

    Many thanks for your help in advance!
    Last edited by Baidaly; Dec 21, 2012 at 7:56 PM. Reason: [CLOSED]
  2. #2
    Hello!

    Try this one:

    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <script runat="server">
        protected void Page_Load(object sender, EventArgs e)
        {
            HtmlTablePanel.Html = "<table><tr><td>Some table</td></tr></table>";
        }
    </script>
    
    <!DOCTYPE html>
    
    <html>
    <head runat="server">
        <title>Ext.NET Examples</title>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            
            <ext:Panel runat="server" ID="HtmlTablePanel" Title="Panel with Html Table"></ext:Panel>
        </form>
    </body>
    </html>
  3. #3
    Thank you! This will work for me.

    Quote Originally Posted by Baidaly View Post
    Hello!

    Try this one:

    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <script runat="server">
        protected void Page_Load(object sender, EventArgs e)
        {
            HtmlTablePanel.Html = "<table><tr><td>Some table</td></tr></table>";
        }
    </script>
    
    <!DOCTYPE html>
    
    <html>
    <head runat="server">
        <title>Ext.NET Examples</title>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            
            <ext:Panel runat="server" ID="HtmlTablePanel" Title="Panel with Html Table"></ext:Panel>
        </form>
    </body>
    </html>

Similar Threads

  1. Create Html Table Dynamically
    By DanielU in forum 1.x Help
    Replies: 2
    Last Post: Dec 15, 2012, 4:15 PM
  2. [CLOSED] Ext control in html tag of the panel.
    By stoque in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jul 12, 2011, 1:30 AM
  3. [CLOSED] HTML Table Recommendation
    By bfolger in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Aug 20, 2009, 6:18 PM
  4. [CLOSED] Add html table to panel in javascript
    By Jurke in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Apr 03, 2009, 6:07 AM
  5. Replies: 2
    Last Post: Feb 19, 2009, 2:02 PM

Posting Permissions