[CLOSED] Combobox in FilterHeader not behaving as in version 2

  1. #1

    [CLOSED] Combobox in FilterHeader not behaving as in version 2

    I have a number of gridpanels which use the FilterHeader plugin. In some columns to help users not familiar with the data I have added a combobox to select an option. In version 2 we could enter one or more characters into the combobox and it would operate as if the combobox wasn't there. In other words it would filter based on those characters. In version 3.1 this capability is no longer there. If I enter one or more characters nothing happens. If I click on the dropdown arrow of the combobx it performs the filter, but the first time you do it only.

    Also if I do use the combobox in the standard way there is no 'x' to enable me to clear the selected value if I want to make another selection.

    Is there some way of regaining the version 2 functionality?

            Html.X().Column().Text("Tool<br>Name").DataIndex("ToolName").Flex(5)
                   .Items(Html.X().ComboBox().DisplayField("ToolName").Height(22)
                        .ListConfig(Html.X().BoundList().ItemTpl(Html.X().XTemplate().Html(@<div style="display:inline-block ; width:120px">{ToolName}</div>)))
                            .Store(Html.X().Store()
                                .Model(Html.X().Model().Fields(new ModelField("ToolName")))
                                .Proxy(Html.X().AjaxProxy().Url(Url.Action("GetToolIssues")).Reader(Html.X().JsonReader().RootProperty("data")))))
                   .Editor(Html.X().ComboBox().DisplayField("ToolName").EnableRegEx(true).QueryMode(DataLoadMode.Local)
                        .ListConfig(Html.X().BoundList().ItemTpl(Html.X().XTemplate().Html(@<div style="display:inline-block ; width:120px">{ToolName}</div>)))
                            .Store(Html.X().Store()
                                .Model(Html.X().Model().Fields(new ModelField("ToolName")))
                                .Proxy(Html.X().AjaxProxy().Url(Url.Action("GetToolIssues")).Reader(Html.X().JsonReader().RootProperty("data"))))),
    Last edited by Daniil; May 12, 2015 at 8:45 PM. Reason: [CLOSED]
  2. #2
    Hi @Argenta,

    Apologize for the delay in answering.

    If I enter one or more characters nothing happens.
    It filters a GridPanel for me. Please provide a full (but minified) test case to reproduce the behavior.

    Also if I do use the combobox in the standard way there is no 'x' to enable me to clear the selected value if I want to make another selection.
    By "standard way" you mean without a FilterHeader, don't you? Anyways, please start a new forum thread for this issue.

Similar Threads

  1. [CLOSED] FilterHeader plugin : override Operator of Parameters["filterheader"]
    By matrixwebtech in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Apr 17, 2015, 1:55 PM
  2. [CLOSED] FilterHeader : FilterHeader for specific columns in gridpanel
    By matrixwebtech in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Mar 29, 2015, 12:20 PM
  3. [CLOSED] Application behaving differently in Staging enviroment
    By otouri in forum 2.x Legacy Premium Help
    Replies: 10
    Last Post: Jan 08, 2013, 4:08 PM
  4. [CLOSED] Combobox in gridpanel (coolite version 0.8)
    By yobnet in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Jun 28, 2010, 2:19 PM
  5. [CLOSED] form.DefaultButton behaving different under FF
    By randy85253 in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Dec 15, 2009, 11:01 AM

Posting Permissions