Manual triggering of ajaxLoader in Tabulator 3.5











up vote
0
down vote

favorite












I am using the tabulator version 3.5 of http://tabulator.info/. I fill the table with an ajax request. During the loading time the "loading icon" is shown. Before the ajax request for tabulator is executed I am running some check operations. During these checks I want to show the loading icon of tabulator already. Thus, is there a way of triggering on/off the loading icon manually via javascript?










share|improve this question






















  • Have a look at:stackoverflow.com/questions/44603880/…
    – Prashant Pimpale
    Nov 7 at 10:33

















up vote
0
down vote

favorite












I am using the tabulator version 3.5 of http://tabulator.info/. I fill the table with an ajax request. During the loading time the "loading icon" is shown. Before the ajax request for tabulator is executed I am running some check operations. During these checks I want to show the loading icon of tabulator already. Thus, is there a way of triggering on/off the loading icon manually via javascript?










share|improve this question






















  • Have a look at:stackoverflow.com/questions/44603880/…
    – Prashant Pimpale
    Nov 7 at 10:33















up vote
0
down vote

favorite









up vote
0
down vote

favorite











I am using the tabulator version 3.5 of http://tabulator.info/. I fill the table with an ajax request. During the loading time the "loading icon" is shown. Before the ajax request for tabulator is executed I am running some check operations. During these checks I want to show the loading icon of tabulator already. Thus, is there a way of triggering on/off the loading icon manually via javascript?










share|improve this question













I am using the tabulator version 3.5 of http://tabulator.info/. I fill the table with an ajax request. During the loading time the "loading icon" is shown. Before the ajax request for tabulator is executed I am running some check operations. During these checks I want to show the loading icon of tabulator already. Thus, is there a way of triggering on/off the loading icon manually via javascript?







javascript ajax tabulator






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 7 at 10:24









Robert

62




62












  • Have a look at:stackoverflow.com/questions/44603880/…
    – Prashant Pimpale
    Nov 7 at 10:33




















  • Have a look at:stackoverflow.com/questions/44603880/…
    – Prashant Pimpale
    Nov 7 at 10:33


















Have a look at:stackoverflow.com/questions/44603880/…
– Prashant Pimpale
Nov 7 at 10:33






Have a look at:stackoverflow.com/questions/44603880/…
– Prashant Pimpale
Nov 7 at 10:33














1 Answer
1






active

oldest

votes

















up vote
0
down vote













In 3.5 the only way to do it would be to trigger the ajax request yourself using the setData function to trigger the load, allowing you to do what every you want before you call it.



In version 4.0 onwards you can use the ajaxRequestFunc property to override the default ajax loading function and return a promise, so you could put your logic in there and resolve the promise when you are ready:



var table = new Tabulator("#example-table", {
ajaxRequestFunc:function(url, config, params){
return new Promise(function(resolve, reject){
//do your pre loading logic here

var promise = table.modules.ajax.defaultLoaderPromise.call(table.modules.ajax, url, config, params)
.then(function(data){
resolve(data);
})
.error(function(err){
reject(err);
})
}
},
});





share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














     

    draft saved


    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53187556%2fmanual-triggering-of-ajaxloader-in-tabulator-3-5%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote













    In 3.5 the only way to do it would be to trigger the ajax request yourself using the setData function to trigger the load, allowing you to do what every you want before you call it.



    In version 4.0 onwards you can use the ajaxRequestFunc property to override the default ajax loading function and return a promise, so you could put your logic in there and resolve the promise when you are ready:



    var table = new Tabulator("#example-table", {
    ajaxRequestFunc:function(url, config, params){
    return new Promise(function(resolve, reject){
    //do your pre loading logic here

    var promise = table.modules.ajax.defaultLoaderPromise.call(table.modules.ajax, url, config, params)
    .then(function(data){
    resolve(data);
    })
    .error(function(err){
    reject(err);
    })
    }
    },
    });





    share|improve this answer

























      up vote
      0
      down vote













      In 3.5 the only way to do it would be to trigger the ajax request yourself using the setData function to trigger the load, allowing you to do what every you want before you call it.



      In version 4.0 onwards you can use the ajaxRequestFunc property to override the default ajax loading function and return a promise, so you could put your logic in there and resolve the promise when you are ready:



      var table = new Tabulator("#example-table", {
      ajaxRequestFunc:function(url, config, params){
      return new Promise(function(resolve, reject){
      //do your pre loading logic here

      var promise = table.modules.ajax.defaultLoaderPromise.call(table.modules.ajax, url, config, params)
      .then(function(data){
      resolve(data);
      })
      .error(function(err){
      reject(err);
      })
      }
      },
      });





      share|improve this answer























        up vote
        0
        down vote










        up vote
        0
        down vote









        In 3.5 the only way to do it would be to trigger the ajax request yourself using the setData function to trigger the load, allowing you to do what every you want before you call it.



        In version 4.0 onwards you can use the ajaxRequestFunc property to override the default ajax loading function and return a promise, so you could put your logic in there and resolve the promise when you are ready:



        var table = new Tabulator("#example-table", {
        ajaxRequestFunc:function(url, config, params){
        return new Promise(function(resolve, reject){
        //do your pre loading logic here

        var promise = table.modules.ajax.defaultLoaderPromise.call(table.modules.ajax, url, config, params)
        .then(function(data){
        resolve(data);
        })
        .error(function(err){
        reject(err);
        })
        }
        },
        });





        share|improve this answer












        In 3.5 the only way to do it would be to trigger the ajax request yourself using the setData function to trigger the load, allowing you to do what every you want before you call it.



        In version 4.0 onwards you can use the ajaxRequestFunc property to override the default ajax loading function and return a promise, so you could put your logic in there and resolve the promise when you are ready:



        var table = new Tabulator("#example-table", {
        ajaxRequestFunc:function(url, config, params){
        return new Promise(function(resolve, reject){
        //do your pre loading logic here

        var promise = table.modules.ajax.defaultLoaderPromise.call(table.modules.ajax, url, config, params)
        .then(function(data){
        resolve(data);
        })
        .error(function(err){
        reject(err);
        })
        }
        },
        });






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 7 at 20:06









        Oli Folkerd

        75911014




        75911014






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53187556%2fmanual-triggering-of-ajaxloader-in-tabulator-3-5%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            這個網誌中的熱門文章

            Tangent Lines Diagram Along Smooth Curve

            Yusuf al-Mu'taman ibn Hud

            Zucchini