Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
300
Using DataBindOnOpen does not enable loading spinner on initial data retrieval
posted

I took the example from here: http://www.igniteui.com/combo/load-on-demand

and modified it slightly:

  1. adding dataBindOnOpen: true
  2. workaround for displaying the dropdown (see below)

$("#combo").one("igcombodatabound", function(){
    setTimeout(function(){
        $("#combo").igCombo("dropDownVisible", true);
    },0);
});

Example: http://jsfiddle.net/7qNU7/1/

Clicking the dropdown arrow will trigger the databinding. However, the spinner is not displayed. Additionally, I needed to add the custom code above to display the dropdown after the data is retrieved.

Parents
No Data
Reply
  • 4315
    Verified Answer
    Offline posted

    Hi Bertm13,

    This issue with the dataBindOnOpen option is already fixed. You don't need to attach to data bound event and show the drop down manually - it just should work. In addition when data is requested on demand, the loading indicator will appear and after data is loaded, the indicator will disappear. You can download the latest service release from here

    I will wait for your feedback.

    Best regards,

    Nikolay Alipiev

Children
No Data