[CLOSED] What the edit type supported by the Grid Panel?

  1. #1

    [CLOSED] What the edit type supported by the Grid Panel?

    Hi,

    What the edit type supported by the Grid Panel?I need the multi column combo.

    Any give the list of all the edit types supported by the Grid Panel?If possible give me the sample on grid editing on fly
  2. #2

    RE: [CLOSED] What the edit type supported by the Grid Panel?

    Hi,

    Theoriticaly a grid supports all controls which inherited from Field class.


    Please provide more details


    1. What is "multi column combo"?
    2. I am not sure what you mean about "grid editing on fly"?
  3. #3

    RE: [CLOSED] What the edit type supported by the Grid Panel?

    Hi,

    1)See the screen shot you will get the clarity on multi column combo.


  4. #4

    RE: [CLOSED] What the edit type supported by the Grid Panel?

    Hi,

    You need to use Template to accomplish that
    <ext:ComboBox 
                                        ID="txtCustomers" 
                                        runat="server"
                                        EmptyText="Select Customer"
                                        TypeAhead="true"
                                        ForceSelection="true"
                                        StoreID="dsCustomers"
                                        DisplayField="CompanyName" 
                                        ValueField="CustomerID"
                                        MinChars="1"
                                        ListWidth="300"
                                        PageSize="10"
                                        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>
                                    </ext:ComboBox>

Similar Threads

  1. [CLOSED] Panel layout type seems to break when using ContentFromPage
    By machinableed in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Apr 26, 2012, 7:20 AM
  2. Replies: 4
    Last Post: Aug 09, 2011, 10:28 AM
  3. Replies: 3
    Last Post: Jun 03, 2011, 12:10 PM
  4. Replies: 1
    Last Post: Nov 08, 2010, 9:31 PM
  5. [CLOSED] Date Value is not getting formatted during Edit mode in Grid Panel
    By speedstepmem3 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Aug 11, 2010, 7:41 PM

Posting Permissions