problem with BroderLayout with grid to grid drag and drop.

  1. #1

    problem with BroderLayout with grid to grid drag and drop.

    I have a strange problem with Broderlayout.

    Inside my borderlayout there are two grids with drag and drop functionality. One in west area and another in Center area.
    But while loading at first time, the Center area grid display behind the west area grid. I have attached the screen shots(screen1.jpg). After one collapse and expand everthing is displaying normally (screen2.jpg).


    Here are my broderlayout codes. Can any one help me to sort this issue.

    Thanks in advance.

    
    <ext:BorderLayout ID="BorderLayout1" runat="server">
    <West Collapsible="true" MinWidth="360" Split="true">
    <ext:Panel ID="baseAvailablePanel" Title="Available Bases" Header="true" runat="server" Height="310" Width="360" Frame="true">
    <Body>
    <ext:FitLayout ID="baseAvailableFitLayout" runat="server">
    <ext:GridPanel 
                                                         ID="baseAvailableGridPanel"
                                                         runat="server" 
                                                         StoreID="baseAvailableStore" 
                                                         StripeRows="true" 
                                                          Shim="false" 
                                                          TrackMouseOver="true"
                                                           />
    </ext:FitLayout>  
    </Body>
     </ext:Panel>  
    </West>
     <Center>
    <ext:Panel ID="baseAssignedSubPanel" runat="server" Title="Base" Header="true" Height="310" Width="345" Frame="true">
     <Body>
    <ext:FitLayout ID="baseAssignedFitLayout" runat="server">
                                                        <ext:GridPanel ID="baseAssignedGridPanel" 
                                                            runat="server" 
                                                            StoreID="baseAssignedStore" 
                                                            StripeRows="true"  Shim="false" />
    
    </ext:FitLayout> 
    </Body>
    </ext:Panel> 
    </Center>
     </ext:BorderLayout>
  2. #2

    RE: problem with BroderLayout with grid to grid drag and drop.

    Hi,

    I am not tested your example yet but try to remove Panels and FitLayouts and use Grids directly in West and Center regions


  3. #3

    RE: problem with BroderLayout with grid to grid drag and drop.


    I have removed panels and Fitlayouts and Grid directly in West and center regions. but the GUI display is totally collapsed.
    Again one gird behind another. See attaached screen shot(screen3.jpg)

    Thanks again...
        <ext:BorderLayout ID="BorderLayout1" runat="server">
                                    <West Collapsible="true" Split="true" >
                                                     <ext:GridPanel 
                                                         ID="baseAvailableGridPanel"
                                                         runat="server" 
                                                         StoreID="baseAvailableStore" 
                                                         StripeRows="true"  Title="AvailableGridPanel"
                                                          Shim="false" Width="450" Height="200"
                                                          TrackMouseOver="true"
                                                           />
                                   </West>
                                    <Center>
                                           
                                                        <ext:GridPanel ID="baseAssignedGridPanel" 
                                                            runat="server" Title="Assigned  GridPanel" 
                                                            StoreID="baseAssignedStore" Width="300" Height="300"
                                                            StripeRows="true"  Shim="false" />
    
                                                    
                                    </Center>
                                </ext:BorderLayout>

Similar Threads

  1. [CLOSED] Can we have drag and drop in same grid
    By sriram in forum 1.x Legacy Premium Help
    Replies: 17
    Last Post: Jul 11, 2012, 5:02 PM
  2. [CLOSED] Grid Drag and Drop example
    By vali1993 in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Jun 14, 2011, 1:20 PM
  3. [CLOSED] Grid to Grid Drag and Drop Questions
    By dmoore in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 15, 2011, 10:43 AM
  4. [CLOSED] [1.0] Grid to Grid Drag Drop
    By MP in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Sep 22, 2010, 3:57 PM
  5. Grid to grid Drag and Drop grouping issue
    By bobs in forum 1.x Help
    Replies: 0
    Last Post: Feb 10, 2009, 7:13 AM

Posting Permissions