日期:2014-05-17 浏览次数:20524 次
<table id="dg" title="My Users" class="easyui-datagrid" style="width: 700px; height: 250px"
url="/SysGroup/Index" toolbar="#toolbar" pagination="true" rownumbers="true" fitcolumns="true"
singleselect="true">
<thead>
<tr>
<th field="firstname" width="50">
u_userno
</th>
<th field="lastname" width="50">
u_cname
</th>
</tr>
</thead>
</table>
public ActionResult Index()
{
string ResponStr = "{\"total\":1,\"rows\":[";
ResponStr += "{\"userid\":\"1\",\"u_userno\":\"j1\",\"u_cname\":\"jason\"}";
ResponStr += "]}";
Response.Write(ResponStr);
return View("SysGroup");
}