Visual Report Designer

  1. #1

    Visual Report Designer

    Hi,

    In relation with this post:

    http://forums.ext.net/showthread.php...s-GUI-Designer

    I would like to know if there exists any Ext.NET sample similar to this one:

    http://www.rabuser.info/jsgui/

    We would like to throw label, images or shapes and change properties like size, font, color,...

    Any advice would be appreciated.

    Thanks in advance,

    Dominik.
    Last edited by Dominik; Feb 16, 2012 at 10:40 AM.
  2. #2
    Hi,

    Unfortunately, I have never met any examples of Ext.NET designer.
  3. #3
    Ok, thanks.

    And should be easy to build a draggable and resizable label?

    Thanks again,

    Dominik.
  4. #4
    Quote Originally Posted by Dominik View Post
    Ok, thanks.

    And should be easy to build a draggable and resizable label?

    Thanks again,

    Dominik.
    We recommend using the Markup to add Components to your Page.

    Example

    <ext:Label runat="server" Text="My Fancy Label" />
    Hope this helps.
    Geoffrey McGill
    Founder
  5. #5
    Well,

    At the moment I build this first sample:

    <%@ Page Language="C#" %>
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title>Resizable - Ext.NET Examples</title>    
        
        <style type="text/css">        
            #basic {
                border:1px solid #c3daf9;
                color:#1e4e8f;
                font:bold 12px tahoma,verdana,helvetica;
                text-align:center;
                padding-top:20px;
            }
            
            #basic {
                cursor:move;
            }
        </style>
    </head>
    <body>
        <form id="Form1" runat="server">
            <ext:ResourceManager ID="ResourceManager1" runat="server">
            </ext:ResourceManager>
            
            <h1>Resizable Examples</h1>
            <br />
            <div id="basic" width="200" height="50" style="position:absolute;left:10;top:10;">Resize Me!</div>
            
            <ext:Resizable ID="Resizable1" 
                runat="server" 
                Element="basic" 
                Wrap="true"                  
                MinWidth="10"
                MinHeight="10"
                PreserveRatio="true"
                Handles="All"
                Draggable="true"
                Dynamic="true" 
                />        
        </form>
    </body>
    </html>
    I still couldn't make it work with a Label control.

    Now, I will need to allow 'labels' be selectables, and next build all these dynamically.

    Regards,

    Dominik.
  6. #6
    Hi Dominik,

    It would appear the topic of this thread has changed, so to keep things organized and to ensure we avoid having multiple conversations happening in the same thread, we ask that you start a new thread when starting a new topic.

    If you feel two threads are related in content, please feel free to cross post a link between the threads.
    Geoffrey McGill
    Founder

Similar Threads

  1. Visual Studio Designer
    By maksim in forum 1.x Help
    Replies: 2
    Last Post: Apr 08, 2012, 10:43 AM
  2. Replies: 3
    Last Post: Jan 09, 2012, 10:09 PM
  3. Is there a Visual Designer?
    By inorder in forum Open Discussions
    Replies: 1
    Last Post: Jul 21, 2010, 9:29 PM
  4. Report in new Tab FF/IE
    By Maia in forum 1.x Help
    Replies: 1
    Last Post: Jun 10, 2009, 3:23 PM

Posting Permissions