[CLOSED] Slider in grid column

  1. #1

    [CLOSED] Slider in grid column

    Hi

    I want to add slider in grid column so that in each row, slider should visible. how to do that?

    Thanks
    Last edited by Daniil; Sep 12, 2013 at 4:12 AM. Reason: [CLOSED]
  2. #2
    Hi @shaileshsakaria,

    I would try to use a ComponentColumn.
    https://examples2.ext.net/#/GridPane...lumn/Overview/
  3. #3
    Hi Daniil,

    It works. I have implemented it as you have suggested.

    <ext:ComponentColumn ID="ComponentColumn1" runat="server" Flex="1">
                                                <Component>
                                                    <ext:Container ID="Container15" runat="server" Height="22">
                                                        <Items>
                                                            <ext:Slider ID="slidercolumnname" runat="server" ItemID="itemcolumnname" DecimalPrecision="3" MaxValue="100" MinValue="0" Width="250px">
                                                                <Listeners>
                                                                    <DragEnd Handler="this.ownerCt.record.set('columnname', this.getValue());App.store.sync();" />
                                                                </Listeners>
                                                            </ext:Slider>
                                                        </Items>
                                                    </ext:Container>
                                                </Component>
                                                <Listeners>
                                                    
                                                </Listeners>
                                            </ext:ComponentColumn>

    Thanks

Similar Threads

  1. Replies: 1
    Last Post: Dec 06, 2012, 3:27 PM
  2. Replies: 1
    Last Post: Nov 24, 2011, 6:48 AM
  3. Replies: 0
    Last Post: Feb 06, 2011, 4:17 PM
  4. command column messing up grid column
    By wp_joju in forum 1.x Help
    Replies: 2
    Last Post: Dec 08, 2010, 6:40 AM
  5. How to Add slider column in grid panel
    By shailendra in forum 1.x Help
    Replies: 0
    Last Post: Nov 19, 2009, 8:13 AM

Posting Permissions