モバイル リストビュー用にデータ ソースのデータ サーバー側を正常にグループ化しましたが、画面に表示できません。データ内_pristine
のデータは、次の構造でデータを正しく示しています。
results: Array[12] // 12 groups total
0 = Array[5] // first group
0 = Object // groupID lives here
total: 14
私のデータソース定義の関連セクションは次のとおりです。
schema: {
groups: "[d.results]", // tried function(response) {return [response.d.results];}
data: "d.results",
total: "d.total",
},
serverGrouping: true,
group: "groupID",
.
.
.
私のデータソースは、クライアント側のグループ化で正常に動作します..