Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在后面的代码中有一个存储在 DataTable 中的数据,如何使用该数据表在 JQWidgets 中绑定。请提供任何可参考的链接
DataTable tb=new DataTable(); tb = rp.GetRelaasePlan(); // Datatable
这需要在前端jqxgrid中使用。
Its fully a Client Side Grid So,
First you have to convert Datatable to json data, Using json data you can pass the values to jqxgrid
Datatable
json
jqxgrid
1.For converting DataTable to Json try this LINK
2.For assigning json values to gird try this LINK