Questions tagged [jquery-bootgrid]

A grid control especially designed for bootstrap

161 questions
3
votes
2 answers

jQuery-bootgrid modal dialog

I have a jQuery-bootgrid as described in the examples on the homepage. In the last column I have two buttons for Edit/Delete of the row-content. All I want to do is to show a modal dialog when the user clicks the Delete-button. However, nothing…
2
votes
1 answer

How to do offline sorting in bootgrid?

Suppose I fetched the data from api and during sort, don't want to hit the api please help if it is possible in bootgrid like datatable. I have this function for bootgrid load can please help on this. function generateBootGrid(pd)…
Umashankar Saw
  • 1,131
  • 1
  • 9
  • 25
2
votes
1 answer

jquery Bootgrid: get all rows data

I need to filter rows in my jQuery Bootgrid (with pagination). How I can get ALL rows from grid? When I try to do this $('#TableId').bootgrid().data('.rs.jquery.bootgrid') it returns only rows in first page.
ap_student
  • 45
  • 6
2
votes
1 answer

Fire event when clicking on Bootgrid pagination button?

I am having trouble getting an event to trigger when clicking on a button in the JQuery Bootgrid pagination element. I believe I am not able to target the element correctly for the handler to know I have clicked on the pagination. I have tried the…
bicycle_guy
  • 299
  • 4
  • 15
2
votes
1 answer

Bootgrid sum column and show result it in footer

I'm implementing a Bootgrid table getting data from Mysql table using Ajax, everything works fine, but now I'm trying to sum the last column and print result on the last row or footer. Does anyone know which method should I call or how can I get to…
Lenin Ocaña
  • 81
  • 1
  • 9
2
votes
1 answer

How to deal with jQuery bootgrid request data in MVC

I'm having some issues with implementing a jQuery bootgrid using ASP.Net MVC. I can't implement the sorting, searching, pagination etc. functionality. This is what I have in my controller: public JsonResult IndexJson(BootgridRequestData model) { …
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
2
votes
1 answer

jQuery Bootgrid sorting, pagination and search functionality not working

I have a jQuery bootgrid implemented into my ASP.Net application which is filled using a Generic Handler. I fill the bootgrid using the Generic Handler as follows: $(function () { var grid = $("#grid").bootgrid({ ajax: true, …
Barry Michael Doyle
  • 9,333
  • 30
  • 83
  • 143
2
votes
1 answer

jQuery Bootgrid replace tr no-results before charge content ajax

I have created a jQuery Bootgrid table connected with ajax content, and while loading ajax content, it shows me "No results Found!" No results found! How can I change that td content, and put an image as the…
Manply
  • 75
  • 1
  • 9
2
votes
1 answer

jquery-bootgrid how to search in hidden columns

I have two hidden columns in jQuery - BootGrid table and I don't want to show it, but I want to search by these two columns in searcher. How can I do it? I tried to add data-visible="false" data-searchable="true" data-identifier="true" but that does…
XXX
  • 21
  • 3
2
votes
1 answer

How to make href work in jquery-bootgrid basic plugin

Am using bootgrid-basic to show my data, …
Mann
  • 576
  • 1
  • 9
  • 33
2
votes
1 answer

Bootgrid select row when checkbox is clicked

I am using Bootgrid to display data in tables: http://www.jquery-bootgrid.com/ When I set the rowSelect to true, I can't select the row when I check the checkbox: I have created a JSFiddle: https://jsfiddle.net/n2jqjtep/1/
aa ss
Dawood Awan
  • 7,051
  • 10
  • 56
  • 119
2
votes
0 answers

Simpliest way for buttons on jq-bootgrid with rails

I want to create a table, with buttons using jq-bootgrid. Bootgrid itself works great, but I've read on their page (examples), that if I want to make edit/destroy buttons I need to use some javascript. I think I know how to do it this way (found…
ZebThan
  • 255
  • 2
  • 17
2
votes
0 answers

Can not searching from small letters in bootgrid.js

Please help me because there was no question related to bootgrid.js in stack overflow japanese version. I want to use small letters on search. but can't it. not working? "caseSensitive" and "characters" setting is default value. As how to use, Table…
M.S.
  • 21
  • 2
2
votes
3 answers

Update grid with added record from AJAX Post, MVC 5

I've seen quite a few posts on this, but I wanted to try to get a best practice down before going down the route I think I will likely need to go. I'm attempting to update my view after I've inserted a new record into the database: Pretty basic…
jlrolin
  • 1,604
  • 9
  • 38
  • 67
2
votes
0 answers

Issue with Jquery Bootgrid and Temporary Table Query

I am creating grids on my website using the JqueryBootgrid Plugin and PHP as backend code. I could bind a grid of "users" and add buttons for adding, deleting, and editing. That works properly. The problem is with the following tables: table…
1
2
3
10 11