ParamQuery grid support forum

General Category => Help for ParamQuery Grid (free version) => Topic started by: Punit on January 08, 2022, 02:45:36 pm

Title: Not bind current item data when in ajax calll put loader in paramquery grid
Post by: Punit on January 08, 2022, 02:45:36 pm
Hi, I want to run loader on when i was click current item the issue was I faced not loaded current item data in presentation always bind previous item data not current item data in presentation in paramquery grid in asp.net mvc application. Here is my ajax call,

  function tree_grid(ID) {
             $("#divLoading").show();
           
            $.ajax({
                type: "POST",
                url: '/Schedule/GetAllPresentation',
                data: "{ scheduleID: '" + ID + "',YearId:" + YearId + ",CompanyId:" + CompanyId + "}",
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                async: false,

                success: function (response) {
                         $("#divLoading").hide();
                    var data1 = [];
                    data1 = $.parseJSON(response);
                    data = data1;
                },
                error: function () {
                    $("#divLoading").hide();
                    swal("", "Error in Data !", "error");
                }
            });
Title: Re: Not bind current item data when in ajax calll put loader in paramquery grid
Post by: paramvir on January 10, 2022, 02:00:20 pm
Where in the code have you assigned data to the grid?