Multi Column Dropdown

  1. #1

    Multi Column Dropdown

    Hi,

    I have a requirement to display data in multi column dropdown. I don't find any suitable controls in the coolite suite. Is there any way to achieve it?




  2. #2

    RE: Multi Column Dropdown

    Hi Hari,

    In the upcoming v1.0 release we're including the new <ext:DropDownField> component which includes functionality to add another component within the drop down panel, including a GridPanel, TreePanel, etc.


    With v0.8.x I don't think there is an equivalent solution.


    Geoffrey McGill
    Founder
  3. #3

    RE: Multi Column Dropdown

    Hi,

    Use Combo with Template (like in the CustomerDetails page of the mvc.ext.net project)

    <ext:ComboBox 
                                        ID="txtCustomers" 
                                        runat="server"
                                        EmptyText="Select Customer"
                                        TypeAhead="true"
                                        ForceSelection="true"
                                        StoreID="dsCustomers"
                                        DisplayField="CompanyName" 
                                        ValueField="CustomerID"
                                        MinChars="1"
                                        ListWidth="300"
                                        ItemSelector="tr.list-item">
                                        <Template ID="Template1" runat="server">
                                            <tpl for=".">
                                                <tpl if="[xindex] == 1">
                                                    <table class="txtCustomers-list">
                                                        <tr>
                                                            <th>Company</th>
                                                            <th>Contact Name</th>
                                                        </tr>
                                                </tpl>
                                                <tr class="list-item">
                                                    <td style="padding:3px 0px;">{CompanyName}</td>
                                                    <td>{ContactName}</td>
                                                </tr>
                                                <tpl if="[xcount-xindex]==0">
                                                    </table>
                                                </tpl>
                                            </tpl>
                                        </Template>
                                        <Triggers>
                                            <ext:FieldTrigger Icon="Clear" HideTrigger="true" />
                                        </Triggers>
                              
                                    </ext:ComboBox>
  4. #4

    RE: Multi Column Dropdown

    Thank you. Between when is V1.0 release. we are eagerly waiting for that.

Similar Threads

  1. Replies: 6
    Last Post: Jan 28, 2012, 1:14 AM
  2. Replies: 8
    Last Post: Sep 13, 2011, 8:47 PM
  3. TreeGrid multi column sort
    By t316 in forum 1.x Help
    Replies: 4
    Last Post: Jul 19, 2011, 10:46 PM
  4. [CLOSED] Multi Column Grouping in 1.0????
    By rthiney in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 25, 2010, 3:06 PM
  5. Grid Panel Multi Editors in one Column
    By bobs in forum 1.x Help
    Replies: 0
    Last Post: Sep 10, 2009, 5:40 AM

Posting Permissions