Questions tagged [jquery-bootgrid]

A grid control especially designed for bootstrap

161 questions
0
votes
2 answers

How to avoid showing all the records before the document ready

I am using ajax = false. How to avoid show all records (more than 100), before starting bootgrid on document-ready event?
0
votes
1 answer

How to operate on an element inside jquery-bootgrid formatters

Suppose I have an bootgrid formatters like this: $(document).ready(function () { //bootgrid $("#bootgrid-issues").bootgrid({ ... formatters: { product: function (column, row){ return "

"…

mainframer
  • 20,411
  • 12
  • 49
  • 68
0
votes
1 answer

Issue when appending a new row to a table and then trying to remove it

I'm having an issue when I try to remove a row that I recently appended to a table. I have 2 tables in the same view. The first table has some unassigned users, each row has its own buttton to assign them. When the button is pressed,the row is…
ozzlopz
  • 3
  • 1
0
votes
1 answer

Will bootgrid work with non-numeric column-id as data-identifier

will bootgrid work with non numeric column-id as the identifier, if its a unique value? Unique Text ID Will selection="true" work for instance? Or do I need a numeric value for the…
pashute
  • 3,965
  • 3
  • 38
  • 65
0
votes
1 answer

bootgrid with editable textbox

How do I add an editable textbox in my BootGrid with the column's text, so that in it opens the textbox for editing, and if I change it moving to the next line or losing focus of the textbox will cause a save to the database? How do I do that?
pashute
  • 3,965
  • 3
  • 38
  • 65
0
votes
1 answer

How can i change the position of pagination or search box in jquery bootgrid?

I have tried to change the position of jquery bootgrid pagination and serach box but cant get proper way to solve the issue.How can i change the position of these?
shahriaz
  • 1
  • 1
0
votes
1 answer

Bootgrid's search is not working

I'm trying to run the search of Bootgrid but when I enter data into the search field stays loading. The webmethod from server side return a list of DTO's that are automatically serialized , since the data is displayed correctly. I 've looked…
0
votes
3 answers

How do I debug JQuery-BootGrid data api to NancyFX

Question edited: I wrote a page with jquery-bootgrid data API. Its should be calling with AJAX to my NancyFX REST API, but it isn't. Client side: I'm serving the bootgrid from a local repo:
0
votes
1 answer

Change Icon in Bootgrid

how do I change the sorting icons in Bootgrid. I've tried the following as per the documentation but not working; $("#grid-basic").bootgrid({ icon: 'fa', iconColumns: 'fa-bars', ... }); Thanks,
Body
  • 3,608
  • 8
  • 42
  • 50
0
votes
1 answer

jquery-bootgrid cannot call reload function

I can call the reload function in jquery-bootgrid by using $.fn.bootgrid.Constructor.prototype.reload but I encounter the error TypeError: this.options is undefined post = this.options.post; Does anyone knows how I can call it properly? I have…
KiX Ortillan
  • 210
  • 2
  • 13
-2
votes
2 answers

Not able to print the child table values in bootstarap bootgrid

JSON response: { "current": 1, "rowCount": 10, "rows": [ { "id": 19, "sender": "123@test.de", "received":"[ { "name":"received1" } ] } ] }, { …
vinodh
  • 714
  • 1
  • 7
  • 20
1 2 3
10
11