[CLOSED] Calendar Bottom View Customization

  1. #1

    [CLOSED] Calendar Bottom View Customization

    Hi,

    We are using the EXt.Net 1.0 Calendar control for our web application. In that Calendar view we would like to show some grid views in the bottom.
    Since it's standard control we are not clear how to customize this views.
    Please provide your solution to implment those views.

    Refer the attachment for more information.


    Thanks,
    Speedstep
    Attached Thumbnails Click image for larger version. 

Name:	Calendar with User and Group List.jpg 
Views:	83 
Size:	74.2 KB 
ID:	4293  
    Last edited by Daniil; May 31, 2012 at 1:01 PM. Reason: [CLOSED]
  2. #2
    Hi,

    I am afraid I don't understand the requirement. Please provide more details.
  3. #3
    We just need to utilise the empty area, in the calendar control, (left side under the month view calendar).. there we need to add two grid panels.
  4. #4
    Well, you just need a respective layout. I would use the following.

    Example
    <%@ 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 runat="server">
        <title>Ext.NET Example</title>
    </head>
    <body>
        <ext:ResourceManager runat="server" />
        <ext:Viewport runat="server" Layout="BorderLayout">
            <Items>
                <ext:Panel 
                    runat="server" 
                    Region="West" 
                    Width="200" 
                    Layout="VBoxLayout">
                    <LayoutConfig>
                        <ext:VBoxLayoutConfig Align="Stretch" />
                    </LayoutConfig>
                    <Items>
                        <ext:Panel runat="server" Title="Panel 1" Flex="1" />
                        <ext:Panel runat="server" Title="Panel 2" Flex="1" />
                        <ext:Panel runat="server" Title="Panel 3" Flex="1" />
                    </Items>
                </ext:Panel>
                <ext:Panel runat="server" Region="Center" Title="Calendar" />
            </Items>
        </ext:Viewport>
    </body>
    </html>
  5. #5
    Actually we use the cotrol, ext:calendarpanel, That control generates a calendar structure, there under the month view calendar there is some space, we need to put a grid panel there,

    Theoritically inside the calendar panel control. kindly help us out.
  6. #6
    Quote Originally Posted by speedstepmem3 View Post
    Actually we use the cotrol, ext:calendarpanel, That control generates a calendar structure, there under the month view calendar there is some space, we need to put a grid panel there,
    I am afraid I can't understand what the space you are talking about. Could you clarify with a screen-shot?

    Quote Originally Posted by speedstepmem3 View Post
    Theoritically inside the calendar panel control. kindly help us out.
    CalendarPanel doesn't support any child controls apart from standard three views.
  7. #7
    Thank you, We solved it.

Similar Threads

  1. [CLOSED] Calendar Add/Edit event When control backgroud color customization
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jun 07, 2012, 10:38 AM
  2. Calendar day view
    By Ronak in forum 1.x Help
    Replies: 0
    Last Post: Mar 20, 2012, 10:32 AM
  3. Replies: 2
    Last Post: Jan 10, 2012, 6:35 AM
  4. Calendar - customization
    By kbugala in forum 1.x Help
    Replies: 0
    Last Post: Oct 20, 2011, 3:38 PM
  5. [CLOSED] calendar month view
    By farisqadadeh in forum 1.x Legacy Premium Help
    Replies: 10
    Last Post: May 02, 2011, 3:42 PM

Posting Permissions