A grid control especially designed for bootstrap
Questions tagged [jquery-bootgrid]
161 questions
1
vote
1 answer
troubles with bootgrid ("append") and formatters
i'm trying a grid with jquery.bootgrid, but i can't generate command buttons...
At first, i get data with a webmethod... no problem.
Then i use the "append" method, fine.
But, when apply "formatters" don´t works
.
$.ajax({
url: url,
type:…

Gabriel
- 11
- 3
1
vote
1 answer
How to access BootGrid cell by column index or column name?
In selected data and other properties events and methods I get a rows[] object.
How do I access a certain cell in that row. Can I use the column index?
e.g. for column 2 (starting with zero) can I write: var text = rows[5][2]?
Can I somehow get…

pashute
- 3,965
- 3
- 38
- 65
1
vote
1 answer
jQuery Bootgrid search error
I am appending data to a table from within an ajax callback.
// ajax
...
success: function(data) {
$("#some-table").bootgrid("append", data.rows);
},
..
It works as intended except the search.
Search works for a single letter but then throws this…

Angad Dubey
- 5,067
- 7
- 30
- 51
1
vote
0 answers
Bootgrid custom length dropdown is it possible?
I'm trying to create custom table length dropdown which is not in the table header, I overwrite the header with
templates: {
header: ""
},
so I would like to replicate it in some other place. How can I do that is it possible?…

Alex
- 579
- 5
- 24
1
vote
1 answer
Custom rowCount for jquery bootgrid?
Hi I use in my project bootgrid I did custom lenght dropdown, evrithing is working apart the table pagination Is there a whay this to be fixed? Here is my code:
var $table = $("#data-table");
$table.bootgrid({
ajax: true,
…

Alex
- 579
- 5
- 24
1
vote
1 answer
Additional parameters for grid
I am using the jquery-bootgrid to render a couple of grinds. It works brilliant.
I want to send some additional parameters for the grid to my MVC controller.
How can i pass those parameters ?
I have tried…

Mihai Tibrea
- 641
- 5
- 23
1
vote
1 answer
Case Insensitive search in jquery-bootgrid
Hi I have implemeted jquery-bootgrid. However, searching is based on case. My requirement is that searching should be done irrespective of case used i.e If am searching for "Australia" and the user types "australia" or "Australia" result should be…

Bikrem
- 25
- 7
1
vote
1 answer
Row color for jquery-bootgrid
I am working with bootgrid. I want the row color to be highlighted based on the specific condition. How do i do it??