如何用easyui-datagrid+mvc实现自动加载表头及数据

大哥们,请问一下,如何用easyui-datagrid+mvc实现自动加载表头及数据
最新回答
偏爱

2025-03-31 00:12:22

$('#tt1').datagrid({
    nowrap: true,//设置为true,当数据长度超出列宽时将会自动截取。
    striped: true,//显示条纹
    loadMsg:'正在加载数据.......',//当从远程站点载入数据时,显示的一条快捷信息
    rownumbers:true,//设置为true将显示行数
    
,
    singleSelect: true
    }); 
    
    <table data-options="fit:true,border:false" id="tt" style="width: auto;" >
   <thead>
     <tr>
      <th data-options="field:'tsxmbm'"  width="80" align="left" >
       编码
      </th>
      <th data-options="field:'tsxmmc'"  width="140" align="left" >
       名称
      </th>
     </tr>
    </thead>
  </table>

 最上面是加载datagrid的js  下面的table部分是要显示的表头“编码”,“名称” field里面是从后台传回来的json对象对应的字段名