[CLOSED] Scroll Bar in Row expander inside a form panel

  1. #1

    [CLOSED] Scroll Bar in Row expander inside a form panel

    Hi Team,

    I am using a grid panel to display my items. But the left most column in the grid is a row expander. When you click on the row-expander, it display few other records. I want to have scroll bar for the items displayed inside the row-expander. Kindly suggest

                
    <ext:Container ID="Container4" runat="server" LabelAlign="Left" Layout="FormLayout"
                  HideBorders="true" AnchorHorizontal="100%">
                    <Items>
                        <ext:GridPanel ID="grdTransferItems" runat="server" StripeRows="true" AnchorHorizontal="100%"
                            AnchorVertical="100%" TrackMouseOver="true" ClicksToEdit="1" AutoDataBind="true"
                            AutoHeight="true" IDMode="Explicit" StoreID="ItemGridStore" AutoExpandColumn="ShortDesc"
                            AutoWidth="true" EnableColumnHide="false" AutoScroll="true">
                            <Plugins>
                                <ext:EditableGrid ID="EditableGrid1" runat="server" Enabled="true">
                                </ext:EditableGrid>
                                <ext:RowExpander ID="CustomFieldExpander" runat="server" ExpandOnEnter="true" >
                                    <CustomConfig>
                                        <ext:ConfigItem Name="allowExpand" Value="true" Mode="Raw" />
                                    </CustomConfig>
                                    <Component>
                                    <ext:FormPanel ID="TransferItemCustomFieldContainer" runat="server" IDMode="Ignore"  AutoScroll="true" Border="false" BodyBorder="false"
                                            Padding="6" ForceLayout="true" Layout="FormLayout" HideLabels="false" BodyStyle="background-color: #DFE8F6" Height="200px">
                                            <Content>
                                                <nxtwuc:CustomFieldsCtrl runat="server" ID="ItemCustomFields" />
                                            </Content>
                                    </ext:FormPanel>
                                    </Component>
                                    <Listeners>
                                       
                                    </Listeners>
                                </ext:RowExpander>
                            </Plugins>
    </ext:GridPanel>
    </ext:Container>
    Last edited by Daniil; May 21, 2013 at 3:39 AM. Reason: [CLOSED]
  2. #2
    Hi @MarginPoint,

    AutoHeight="true" and scrolling conflicts each other.

    You should set up a fixed Height. Also you might need to set up AutoScroll="true".
    Last edited by Daniil; Oct 07, 2013 at 1:05 PM.

Similar Threads

  1. [CLOSED] performing editing the grid inside row expander plugin
    By pawangyanwali in forum 2.x Legacy Premium Help
    Replies: 8
    Last Post: May 13, 2013, 5:40 AM
  2. [CLOSED] grid panel inside row expander
    By pawangyanwali in forum 2.x Legacy Premium Help
    Replies: 10
    Last Post: May 08, 2013, 11:47 AM
  3. ajax proxy inside row expander
    By shunilkarki in forum 2.x Help
    Replies: 0
    Last Post: May 07, 2013, 12:43 PM
  4. [CLOSED] Need to increase size of controls inside Form Panel
    By wisdomchuck in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: May 23, 2012, 1:58 PM
  5. Replies: 0
    Last Post: Dec 28, 2011, 9:30 AM

Posting Permissions