I'm using jquery-bootgrid plugin. I'll offer the user the possibility to store some values globally, e.g. language etc., which then will be applied on each visit.
Bootgrid offers the ability to set some available rowCounts
to be shown. I want to save this value by user. So one user can have 100, the other 25 and the other -1 (which would be "All").
However, I can't find any method or whatever to set a "pre-selected" value.
I guess something like:
var grid = $("#myGrid").bootgrid({
columnSelection: false,
rowCount: [10, 25, 100, -1],
selectedRowCount: 25 // <-- this line/functionality I'm missing
});
Any ideas for a workaround?