Comparison between DataTables and Dojo gridx

Comparison between DataTables and Dojo gridx

bumblebeebumblebee Posts: 18Questions: 5Answers: 0

Is there a feature comparison on this site. I am moving from Dojo gridx to DataTables. I am more used to configuring a column with json backend values like this

           {
            name : "Employee Name",// String used for title of the column
    width : "10%",
    field : "employeeName", //JSON data Key/Value Pair
    formatter:function(field) {
            // Here I can customize to show links or icons based on values I get from JSON Key/Value Pair.
              }

The above example is for one column in a grid. Is a good example here I can look to understand DataTables.

Answers

  • bumblebeebumblebee Posts: 18Questions: 5Answers: 0
    edited May 2015

    I found my answer. I am using columns with title, width and other options and render to customize the value in the column.

This discussion has been closed.