Questions tagged [jquery-bootgrid]

A grid control especially designed for bootstrap

161 questions
2
votes
4 answers

A clean way to add a button on top of table - Bootgrid

I am using Jquery-Bootgrid. http://www.jquery-bootgrid.com/ I need a situation where user can select a Row, then the user clicks a button for Edit/Delete. I want this to be re-useable. So I have created a Method: function dataTable() { var self…
Dawood Awan
  • 7,051
  • 10
  • 56
  • 119
2
votes
1 answer

Jquery-Bootgrid, Row is null on click

I have created a generic function, so I can use the same code on different pages. I am loading data using Ajax, I refresh my Table when a value of a DropDown changes. When I click on a row the value is null: This is my dataTable function function…
Dawood Awan
  • 7,051
  • 10
  • 56
  • 119
2
votes
0 answers

Displaying Images from Response in Bootgrid Data Table

I need to display an element in a Bootgrid data table. I'm getting the data from the response into PHP as follows: $name = $key->name; $region = $key->region->name; $flag = $key->region->flagUrl; Then I loop through it to create the…
Cristian
  • 33
  • 5
2
votes
1 answer

Binding ajax data to Bootgrid not showing result

I am facing issue on search functionality.I am searching data and while key in any value & debug gave me error on below line: if (column.searchable && column.visible && …
Sivadutta
  • 21
  • 2
2
votes
1 answer

Laravel 5 and Bootgrid Pagination

I'm working with Laravel 5 and Bootgrid Pagination. I'm planning to use it later so I'm learning it and playing around with it but I can't make it work. In my browser console I get Uncaught TypeError: Cannot read property 'length' of undefined I…
jackhammer013
  • 2,295
  • 11
  • 45
  • 95
2
votes
1 answer

Changing jquery-bootgrid page to display selected data-row-id using javascript

I'm using a jquery-bootgrid to display paged data. Is there a way to use javascript to change to a given bootgrid page based on data-row-id? Basically the user can click on a marker on a map and I need the bootgrid to change to the page with the…
Paul Cooper
  • 196
  • 2
  • 7
2
votes
1 answer

ng-repeat is not working when directive is called

I'm using BootGrid Data table and JSON file as my data source for the table. Service .service('datatableService', ['$resource', function($resource){ this.getDatatable = function(id, email, date) { var datatableList =…
Body
  • 3,608
  • 8
  • 42
  • 50
2
votes
3 answers

Pass parameter to Bootgrid dynamically

I have a bootgrid like this, var grid = $("#grid-data").bootgrid({ ajax: true, post: function () { /* To accumulate custom parameter with the request object */ return { id:…
stackada
  • 414
  • 1
  • 6
  • 16
1
vote
0 answers

Exporting report with header/footer information on front-end using JSON data

What are some alternatives to create a report with additional header/footer information at the top and bottom of the page without entirely revamping the table library for display? I'm currently using Jquery/Bootgrid to load the data into tables The…
1
vote
0 answers

"How to make a header fixed while content is scrolled in jquery bootgrid "

I am trying to make header fixed while the main content is scrolled in jquery bootgrid. how to make header fixed in its position?. here is my code
1
vote
2 answers

JQuery bootgrid plugin with ASP.NET Razor pages

I have simple HTML table in Razor view
Jalle
  • 1,566
  • 5
  • 22
  • 42
1
vote
0 answers

Jquery Bootgrid Modal for edit not appears

good afternoon. I'm working with jQuery-bootgrid. In the last column I have two buttons for Edit/Delete of the row-content. Delete works nice, but when I want to edit something, the modal dont appear idk what else to do lol :( Here its the…
Diego
  • 69
  • 1
  • 1
  • 10
1
vote
0 answers

Get the total no of records returned from the API

I'm getting the data for the grid using an API. The api is returning the data in the below format { "current": 1, "rowCount": 10, "rows": [ { "id": 19, "sender": "123@test.de", "received": "2014-05-30T22:15:00" }, …
Joe Samraj
  • 311
  • 3
  • 21
1
vote
1 answer

jquery Bootgrid multiple tr in thead with colspan or rowspan

How can I format my table header on jQuery Bootgrid? When I initialize the table with Bootgrid function, the multiple header is formated wrong. The following example shows you what I want:
Detail
Alex
  • 230
  • 1
  • 2
  • 19
1
vote
1 answer

How to apply bootgrid filter?

I have a bootgrid table with large number of rows. Is it possible to apply filter on the table? e.g. each row has an attribute, say type. I want to display type="A" rows only. many thx steve
Java Guy
  • 53
  • 1
  • 4
1 2
3
10 11