0
votes

I have a Data stored in DataTable in code behind, How to use that datatabe to bind in JQWidgets. Please provide if any link available for refrence

        DataTable tb=new DataTable();
        tb = rp.GetRelaasePlan();   // Datatable

This need to used in front end jqxgrid.

1

1 Answers

0
votes

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

1.For converting DataTable to Json try this LINK

2.For assigning json values to gird try this LINK