Reputation: 20726
is there any way to remove the red marked "select column" from an dojo grid?
Upvotes: 0
Views: 287
Reputation: 3395
This specific column is used to display the row selector to select rows. To disable that, just set the rowSelector
property of the grid to false
.
For example,
var grid = new dojox.grid.DataGrid({rowSelector:false}, node);
Upvotes: 2