[CLOSED] Buffered Loading of Combo Box

  1. #1

    [CLOSED] Buffered Loading of Combo Box

    Hello

    Was wondering if the issue of using buffered rendering has been extended to MultiCombo's? I am trying some combination of the following:

    Html.X().MultiCombo().ID("cboRoute").QueryMode(DataLoadMode.Local).FieldLabel("Routes")
        .DisplayField("RouteName").ValueField("RouteID")
        .Plugins(Html.X().BufferedRenderer())
        .Store(Html.X().Store()
        .AutoLoad(true)
        .Buffered(true)
        .Model(Html.X().Model()
            .Fields(
                new ModelField("RouteID"),
                new ModelField("RouteName")
                    )
             )
        .Proxy(Html.X().AjaxProxy()
               .Url(Url.Action("RouteList"))
        .Reader(Html.X().JsonReader().Root("data").IDProperty("$id"))
        )
        )
        .Triggers(Html.X().FieldTrigger().Icon(TriggerIcon.Clear).HideTrigger(true))
        .Listeners(l =>
            {
                 l.Change.Handler = "fnSetTrigger(this);";
                 l.TriggerClick.Handler = "fnComboClearFilter(this);";
            })
    I have been trying various combinations of the Plugin, Buffered(true) and QueryMode but with no result.

    This thread from last year may be talking about the same thing.
    http://forums.ext.net/showthread.php...nite-scrolling

    If so and there is not yet a solution, do you have an example of the DropDownField + GridPanel combination?

    Thank you for your help.
    Last edited by Baidaly; Oct 26, 2013 at 12:34 AM. Reason: [CLOSED]
  2. #2
    Hello!

    Quote Originally Posted by Patrick_G View Post
    I have been trying various combinations of the Plugin, Buffered(true) and QueryMode but with no result.

    This thread from last year may be talking about the same thing.
    http://forums.ext.net/showthread.php...nite-scrolling

    If so and there is not yet a solution, do you have an example of the DropDownField + GridPanel combination?

    Thank you for your help.
    Unfortunately, Sencha didn't implement it so it's not possible to add the infinite scroll to DataView or MultiCombo. However, we will as them again and maybe they will provide at least a possible way to do this.

    Quote Originally Posted by Patrick_G View Post
    If so and there is not yet a solution, do you have an example of the DropDownField + GridPanel combination?

    Thank you for your help.
    Here is example: https://examples2.ext.net/#/Form/Dro...ield/Overview/
  3. #3
    Wow, thank you for the very quick response and for pointing me at the example. I am sure I can get what I need from that.

    Thanks for making such a great product.

    Patrick

Similar Threads

  1. Replies: 5
    Last Post: Apr 27, 2016, 12:43 AM
  2. [CLOSED] Error in buffered grid
    By RCM in forum 2.x Legacy Premium Help
    Replies: 5
    Last Post: Nov 22, 2013, 6:43 PM
  3. [CLOSED] Combo box items not loading on store reload.
    By Sowjanya in forum 2.x Legacy Premium Help
    Replies: 4
    Last Post: Aug 20, 2013, 2:31 PM
  4. [CLOSED] CheckColumn with buffered store
    By Leonid_Veriga in forum 2.x Legacy Premium Help
    Replies: 3
    Last Post: Jul 01, 2013, 12:02 PM
  5. [CLOSED] Buffered Grid with filtering and editing
    By jchau in forum 2.x Legacy Premium Help
    Replies: 1
    Last Post: Jan 13, 2013, 6:39 AM

Tags for this Thread

Posting Permissions