Questions tagged [jquery-bootgrid]

A grid control especially designed for bootstrap

161 questions
0
votes
1 answer

bootstrap multiselect dropdown+disable uncheck for particular option

How I can disable uncheck option from the bootstrap multi-select drop-down, actually on load some option by default is checked and I want those options not to be unchecked. Below I am providing an image for better understanding. ! [Link for the…
0
votes
1 answer

Hidding columns for small devices

I'm using bootstrap 3 and bootgrid to display tables. Is there a way to hide some columns in small devices ? I'm using class hidden-xs in th elements, but it still display data (not the columns). My questions are: How to hide a column for small…
Beetlejuice
  • 4,292
  • 10
  • 58
  • 84
0
votes
1 answer

Bootgrid - Unexpected token < in JSON at position 0

I am having a bootgrid table which I populate using ajax, the problem is when I select multiple columns from db, after ten columns I receive an error. Does anyone know if boodgrid has a limitation or something. I specify that the data are ok, I…
Ioana B
  • 195
  • 3
  • 16
0
votes
2 answers

jQuery bootgrid: Passing PHP variable to AJAX

I am using the jquery bootgrid and using AJAX for the server side processing. I am trying to pass a PHP variable with AJAX to the processing script, however, I can't get it working to pass the PHP variable to the AJAX script. I tried to use the…
0
votes
1 answer

Can't pass data from view to controller and fill grid data at the same time

So I have an issue where I can do only one thing at a time: Pass data to the post method in the controller without filling the grid data OR fill grid data without being able to pass data to the post method in the controller. How can I do both?…
0
votes
0 answers

Click event not working in bootgrid formatters

In JQuery-bootgrid formatters I am not able to call the click method. If you have any idea what could be wrong please post here. How to use the click event in KO using bootgrid? This is my code: function VM() { var self = this; self.GetDetails…
0
votes
1 answer

Knockout Click is not working when we are using Jquerybootgrid

I am new to KnockoutJS. I want to fire a event on click of a button(or Anchors). I have appended the data to table using Jquery Bootgrid but I couldn't get the alert. var vm; function VM() { var self = this; self.ShowMessage = function()…
Avi
  • 35
  • 1
  • 9
0
votes
1 answer

How to handle click and doubleclick in Bootgrid

My table is Jquery Bootgrid and I want to do an action by clicking and another action by double-clicking a row. If I click a row, I want to alert the id of this row. If I double-click this row, I want to jump to another url eg. jump.php?id=[id of…
Oliver
  • 1
0
votes
1 answer

Current Page element not passing in jQuery Bootgrid Pagination

I am using jQuery Bootgrid, I got 2 problems on Pagination, This is my javascript code From below code data method is passing as GET, even I didn't mention GET in my code.(I know default method POST), Also I have tried to make it as POST method in…
Wazan
  • 539
  • 1
  • 8
  • 27
0
votes
2 answers

Can AngularJS be used with jQuery bootgrid?

After 2 days reading all topics about jQuery Bootgrid and AngularJS, I still can't use angular directives on my generated grid. I'm using AngularJS 1.6.6 and jQuery Bootgrid 1.3.1. The page that is using it is running fine and all the elements…
macfoli
  • 1
  • 4
0
votes
0 answers

Jquery bootgrid validation

I have a requirement to validate the fields before bootgrid loads the data. The field is inside the bootgrid (Date search). So, i was trying var grid = $("#grid").bootgrid({ ajax: true, url: "url", caseSensitive: false, rowCount:…
Arvind SJ
  • 1
  • 1
0
votes
1 answer

jQuery Bootgrid can't open popover

I have a jQuery Bootgrid. In one column I want to apply style for cell content and if click on cell open bootstrap popover. I'm using custom formatter and style was apply successfully but popover not working. What is problem? formatters: { …
ap_student
  • 45
  • 6
0
votes
0 answers

Display json encoded image from database in jQuery Bootgrid?

I want to display an image from a database in my Bootgrid table, and I know that I have to use formatters. But I don't know how? Here is an example of my Bootgrid table and side server code: var productTable = $('#data').bootgrid({ ajax: true, …
0
votes
1 answer

Bootgrid read returned value in JSON

I'm using jQuery bootgrid to display data in table. I get data using Ajax and I return the values in JSON format. On the JSON string it comes a variable I want to read to display in other section out of the table. Ajax function is the…
Lenin Ocaña
  • 81
  • 1
  • 9
0
votes
1 answer

Search Phrase not working after using custom request handler in bootgrid

I have implemented a bootgrid for following table but after using custom request handler the search phrase is not working.Here is the table.