homelessDevOps
homelessDevOps

Reputation: 20726

Remove "column" form DojoX Grid 1.2

is there any way to remove the red marked "select column" from an dojo grid?

alt text

Upvotes: 0

Views: 287

Answers (1)

Fu Cheng
Fu Cheng

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

Related Questions