jQWidgets Forums

jQuery UI Widgets Forums Lists ComboBox Loading image when loading huge data Reply To: Loading image when loading huge data

Loading image when loading huge data #56095

Dimitar
Participant

Hello Matej,

How about this: add the following style to your page:

<style type="text/css">
    .jqx-combobox-input, .jqx-combobox-content
    {
        background: url('../../images/loader.gif') no-repeat center;
    }
</style>

Remove the background image on the bindingComplete event:

$("#jqxComboBox").on('bindingComplete', function (event) {
    $(".jqx-combobox-input, .jqx-combobox-content").css({ "background-image": "none" });
});

Best Regards,
Dimitar

jQWidgets team
http://www.jqwidgets.com/