0
海蘭傢伙,所以我的數據是這樣的:如何映射多層jsondata到的jqGrid
TimeSheetData
[
{ID:2, Name:QXC, Items:[{Status:1, Hours: 8},{Status:1, Hours: 4}]},
{ID:5, Name:ABC, Items:[{Status:1, Hours: 6},{Status:1, Hours: 0}]}
]
和我的格子看起來像:
jQuery("#rowed5").jqGrid({
data: timeSheetData,
datatype: "local",
height: 250,
colNames:['ID','Name','Monday','Tuesday'],
colModel:[
{name:'ContractID', index:'ContractID', jsonmap:'?????', width:200, editable:false, sortable:false},
{name:'EmployeeName', index:'EmployeeName', jsonmap:'?????'' ,width:200, editable:false, sortable:false},
{name:'Monday', index:'Monday', jsonmap:'?????', width:200, editable:false, sortable:false},
{name:'Tuesday', index:'Tuesday'jsonmap:'?????'jsonmap:'timeSheetRow1.timeSheetItem2.WorkedHours', width:200, editable:false, sortable:false}
],
caption: "Input Types",
jsonReader: {repeatItems: false, root: "timeSheetRow1"}
});
而且我很感興趣什麼我需要什麼來代替?????在我的jqgrid表中獲取以下兩行:
2, QXC, 8, 4
5, ABC, 6, 0
Thx提前!