Сортировка JsGrid не работает

Ниже приведена часть моего кода JsGrid, в котором, как мне кажется, чего-то не хватает для сортировки данных, как и в любых других примерах на Fiddle.

autoload: true,
inserting: false,
editing: false,
paging: true,
pageIndex: 1,
pageSize: 5,
pageLoading: true,
autoload: true,
filter: true,
sorting: true,

controller: {
  loadData: function(filter) {
    return $.ajax({
      type: "GET",
      url: BASE_URL,
      data: filter,
      dataType: "json",
      cache: false
    });
  },
},

Я пробовал с сортировкой: "число".


person That Snowing Summer    schedule 06.09.2017    source источник


Ответы (1)


Ниже логика сортировки по номеру

$("#Grid2").jsGrid({
    height: "auto",
    width: "100%",

    filtering: false,
    editing: false,
    sorting: true,
    paging: true,
    autoload: true,
    inserting: false,
    pageSize: 15,
    pageButtonCount: 5,

    controller: {
        loadData: function(filter) {
            var d = $.Deferred();
            $.ajax({
                cache: false,
                type: 'GET',
                url: "http://" + servername + ":" + portnumber + "/api,
                data: filter,
                dataType: "json",
                success: function(data) {
                    filteredData = $.grep(data, function(item) {
                        //filtering logic
                        ;
                    });
                    d.resolve(filteredData);
                    testdata = JSON.stringify(data);
                    $("#Grid2").jsGrid("sort", 1);
                    HistoricData = data;
                },
                error: function(e) {
                    console.log(e);
                    console.log(e.responseText);
                    var errorMsg = e.responseText;
                    var msg = errorMsg + " for this particular combination";
                    showError(msg);
                    $("#displayingHistoryValues").hide();
                    $("#ExportGrid2").hide();
                    $("#Grid2").hide();
                    d.resolve();
                }
            });

            return d.promise();
        }
    },
    fields: [{
        title: "Value",
        name: "MeasureValue",
        type: "number",
        width: "5%",
        css: "custom-field",
        sorting: true,
        itemTemplate: function(value, item) {

            if (item.MeasureValue != null && item.MeasureValue != '' && item.MeasureValue.trim().length > 0) {
                var mesval = FormatValeur(item.MeasureUnit, item.MeasureValue);
                return "<div>" + mesval + "</div>";
            }

        }
    }, {
        type: "control",
        editButton: false,
        deleteButton: false,
        width: "5%"
    }]
})
person Sandeep Jain    schedule 08.11.2017