私はasp.netアプリケーションを開発していますが、この問題が発生します.(ユーザーの入力から)いくつかの検索条件でデータをロードし、それを1つのグリッド(jTable)に表示したいです。ただし、aspx.cs ファイルでは、クエリを起動するメソッドは次のようになります。
"public static object StudentList(int jtStartIndex, int jtPageSize, string jtSorting)"
そのため、検索条件を入力できません。aspxファイルのどこかでできるのだろうか:
title: 'The Student List',
paging: true, //Enable paging
pageSize: 10, //Set page size (default: 10)
sorting: true, //Enable sorting
defaultSorting: 'Name ASC', //Set default sorting
actions: {
listAction: '/Demo/StudentList',
deleteAction: '/Demo/DeleteStudent',
updateAction: '/Demo/UpdateStudent',
createAction: '/Demo/CreateStudent'
},
助けてくれてありがとう。