[CLOSED] editable combo on touch issue

  1. #1

    [CLOSED] editable combo on touch issue

    In my app, i have this exact combo. When i click the trigger to expand dropdown (on touch), it flashes and closes right away. i cant get the thing to open at all. If i replace my store with a static store, it works fine. only fails on a store with a proxy.

    Then controller just returns a list of objects that have id/description. pretty trivial so i didnt include it.

    /Z

    <%@ Page Language="C#" %>
    
    
    <!DOCTYPE html>
    
    
    <html>
    <head id="Head2" runat="server">
        <title>Test</title>
    </head>
    <body>
    
    
        <ext:ResourceManager ID="ResourceManager2" runat="server" />
    
    
            <ext:Viewport ID="Viewport1" runat="server" Layout="VBoxLayout">          
                <LayoutConfig>
                    <ext:VBoxLayoutConfig Align="Stretch" />
                </LayoutConfig>
                <Items>
                    <ext:Window 
                        ID="WindowChooseCC7" 
                        runat="server" 
                        Icon="ApplicationFormAdd" 
                        Width="400" 
                        AutoHeight="true"
                        Modal="true"
                        Title="Select..."
                        Constrain="true">
                        <Items>
                            <ext:FormPanel
                                ID="FormPanelChooseCC7" 
                                runat="server" 
                                Layout="FormLayout"
                                BodyPadding="5"
                                >
                                <Items>
                                    <ext:Hidden ID="TextFieldCC7ChooserUrl" runat="server" />
                                    <ext:Hidden ID="TextFieldCC7Name" runat="server" />
                                    <ext:ComboBox ID="ComboBoxCC7Chooser" 
                                        runat="server" 
                                        Padding="5" 
                                        DisplayField="description" 
                                        TypeAhead="false"
                                        ValueField="id" 
                                        EmptyText="Select an item" 
                                        PageSize="10"
                                        Width="200"
                                        FieldLabel="Cost Center 7"
                                        MinChars="1" >
                                        <Store>
                                            <ext:Store ID="StoreChooseCC" runat="server" AutoLoad="true">
                                                <Proxy>
                                                    <ext:AjaxProxy Url="/Search/FindCCs">
                                                        <ActionMethods READ="GET" />
                                                        <Reader>
                                                            <ext:JsonReader IDProperty="id" RootProperty="data" TotalProperty="total"/>
                                                        </Reader>
                                                    </ext:AjaxProxy>
                                                </Proxy>
                                                <Model>
                                                    <ext:Model IDProperty="id"  runat="server">
                                                        <Fields>
                                                            <ext:ModelField Name="id" Type="Int" />
                                                            <ext:ModelField Name="description" Type="String" />
                                                        </Fields>
                                                    </ext:Model>
                                                </Model>
                                            </ext:Store>
                                        </Store>
                                    </ext:ComboBox>
                                </Items>
                            </ext:FormPanel>
                        </Items> 
                    </ext:Window>
            </Items>
        </ext:Viewport>
    </body>
    </html>
  2. #2
    Hello @Z!

    I don't seem to be able to reproduce the issue you described here. Perhaps chrome in touch device emulation mode is not enough?
    Last edited by fabricio.murta; Jan 10, 2018 at 7:35 PM.
  3. #3
    I can verify that i cant replicate this either. but it is still a problem for me. i just added a listener to make it NOT editable on touch as a temp workaround.
    /Z

Similar Threads

  1. dynamic population of store not working for combo in editable grid
    By n_s_adhikari@rediffmail.com in forum 2.x Help
    Replies: 0
    Last Post: Aug 13, 2013, 4:58 PM
  2. [CLOSED] Combo query issue when using same store on two combo boxes
    By FpNetWorth in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Feb 05, 2013, 10:53 PM
  3. Replies: 3
    Last Post: Jun 03, 2011, 12:10 PM
  4. Editable Grid Panel with Combo box column
    By jigpatel06 in forum 1.x Help
    Replies: 1
    Last Post: Nov 03, 2010, 8:06 PM
  5. [1.0] Combo boxes not editable.
    By michaeld in forum 1.x Help
    Replies: 1
    Last Post: May 20, 2010, 10:49 AM

Posting Permissions