Reputation: 271
I'm using PHP with jqGrid to show the data.
I need to disable the selection function. Just show data.
Do anybody know how can I do that?
I only see examples of multiselection rows.
Upvotes: 2
Views: 852
Reputation: 271
I was referring to disable single selection the answer is this in the constructor of the grid:
beforeSelectRow : function (){
return false;
}
So that prevent the selection happend.
Upvotes: 2
Reputation: 181
I'm a little confused.
Are you referring to single/multiselecting rows grid option "multiselect:"?
If so:
Upvotes: 0