我有一个带有 json 数据存储的 dojo 网格(mysql 结果集转换为 json 格式)。目前我的网格显示 5 列,如下图所示:
我有名为“操作”的列。此“操作”列下的行应包含带有超链接的按钮或图像(编辑图标、删除图标),例如用于编辑的 edit.php?id=1 或用于删除的 delete.php?id=1。这是我的道场网格代码:
<span dojoType="dojo.data.ItemFileReadStore" data-dojo-id="studentsStore" url="http://localhost/newsmis/public/studentManagement/student/fetchdata/data/1"></span>
<table dojoType="dojox.grid.DataGrid" id="studentsGrid" data-dojo-id="studentsGrid" columnReordering="true" sortFields="['idstudents','first_name','middle_name','last_name']" store="studentsStore" clientSort="true" selectionMode="single" rowHeight="25" noDataMessage="<span class='dojoxGridNoData'>No students found</span>">
<thead>
<tr>
<th field="idstudents" width="20%">Student ID</th>
<th field="first_name" width="20%">First Name</th>
<th field="middle_name" width="20%">Middle Name</th>
<th field="last_name" width="20%">Last Name</th>
<th field="action" width="20%">Action</th>
</tr>
</thead>
</table>
我的 json 数据格式是
{"identifier":"idstudents","items":[{"idstudents":"11","first_name":"Pradip","middle_name":"Maan","last_name":"Chitrakar"}]}
我该怎么做?请给我一些想法