我想知道如何在kendo ui網格中過濾數據。 我通過使用JSON從數據庫獲取數據。如何在kendo ui網格中過濾
當我調試器功能JsonGetBill比爾控制器, 我什至不能調試任何東西。 也許,KendoGrid沒有嘗試從JsonGetBill獲取數據。 我該如何解決這個問題?
Plz,幫幫我。
$('#divBillInfoGrid').kendoGrid({
dataSource: {
type: "JSON",
transport: {
read: {
url: '@Url.Action("JsonGetBill", "Bill")',
type: "POST",
contentType: "APPLICATION/JSON"
}
},
schema:{
model:{
fields: {
BIL_Idx: { type: "number" }
}
}
},
pageSize: 5,
serverPaging: true,
serverFiltering: true,
},
height: 550,
filterable: {
mode: "row"
},
pageable: true,
columns: [
{ field: "BIL_Idx", title: "No", filterable: { cell: { showOperators: false } }, sortable: true, template: '<div class="idx" style="font-size:12px text-align:center;">#=BIL_Idx#<div>' }
],
});
}
放到$( '#divBillInfoGrid')getKendoGrid()dataSource.read()。在你的代碼中,執行它,然後看看你的瀏覽器開發者控制檯,看看發生了什麼。 –
您的問題標題與內容不匹配。過濾問題在哪裏? – tede24
@Japi,好的,謝謝你! :) –