Questions tagged [flexigrid]

Flexigrid is a lightweight jQuery data grid with resizable columns and scrolling data to match the headers. It is also able to connect to an XML based data source by using Ajax.

Features

  • Resizable columns
  • Resizable height
  • Sortable column headers
  • Cool theme
  • Can convert an ordinary table
  • Ability to connect to an Ajax data source (XML only)
  • Paging
  • Show/hide columns
  • Accessible API

Flexigrid View

Resources

243 questions
12
votes
12 answers

Consistent grid headers with Flexigrid ?

So I'm trying to use the flexigrid plugin. It looks like it's going to work great aside from the fact that it looks like you have to manually set the column widths. Otherwise, the column headers do not match up with the body columns. Is there any…
Joel Martinez
  • 46,929
  • 26
  • 130
  • 185
9
votes
3 answers

What are some best practices for client-server interaction?

I'm building a website for work, and one of the more important features is a rich content grid displaying data. By default, it only displays 20 items per page, but we have ~200 items in the database that can be filtered, sorted, and searched. Our…
EAMann
  • 4,128
  • 2
  • 29
  • 48
9
votes
5 answers

How do you handle row onclick events using Flexigrid?

My flexigrid is setup. All I need is an event that gets called when the user clicks on a row. From there, I will send the user to another page based on the data contained in that row. But I can't seem to find any examples on how to do this. I'm…
whoabackoff
  • 1,603
  • 4
  • 17
  • 32
9
votes
3 answers

Flexigrid - how to turn off row selection

Is it possible to turn off the row selection feature on Flexigrid? It's somewhat annoying when you haven't implemented anything that makes use of the selection.
Mr. Flibble
  • 26,564
  • 23
  • 69
  • 100
7
votes
1 answer

Want to stretch the last column in Flexigrid

I did not find any way to apply column width in flexigrid in terms of percentages. I have given absolute lengths as follows: colModel : [ {display:'ISO', width:50}, {display:'Name', width:300}, {display:'Printable Name', width:200}, …
Ashwin
  • 12,081
  • 22
  • 83
  • 117
5
votes
1 answer

jQuery's Flexigrid show/hide columns feature in the header

Here is my Flexigrid: $("#grUser").flexigrid({ url: 'someJSON.php' , dataType: 'json' , colModel : [ {display: '', name : 'Index', width :100, align: 'left'} , {display: '', name : 'Value', width : 100, align:…
Svetlozar Angelov
  • 21,214
  • 6
  • 62
  • 67
4
votes
2 answers

Sort columns with a jQuery Flexigrid

Is there a way I can mark JQuery Flexigrid columns as sortable if I don't define them in-line? i.e. I know I can do this $("#flex1").flexigrid( { colModel: [ { display: 'Col1', name: 'Col1', sortable: true }, {…
Bobby
4
votes
1 answer

Flexigrid jquery plugin stuck at "processing, please wait"

I am trying to set up flexigrid on my website... Everything seems to be fine except for the fact that the data just never loads! It is stuck at "processing, please wait" Here is my html file:
Marci-man
  • 2,113
  • 3
  • 28
  • 76
4
votes
2 answers

Is there a hide/show column functionality on jqGrid like in flexigrid?

Is there a hide/show column functionality on jqGrid like in flexigrid? I want the user be capable of hiding columns, so it will be easy for them to review related columns(informations)
Green Lantern
  • 858
  • 10
  • 21
4
votes
2 answers

Flexigrid: selection of rows to survive refresh

I am using flexigrid in a project and I would like to be able to keep the selected rows after the grid is refreshing. I asked the same question on the flexigrid discussion board and I got this answer: Add a click handler, save the id if the row id…
Chris19
  • 210
  • 7
  • 17
4
votes
1 answer

Disable Drag and Drop option in flexigrid Jquery?

Is it possible to disable the drag and drop option in Flexigrid? I have a Name column which I don't want to be moved from the very 2 nd position. Below is the example for that.
pinku
  • 1,139
  • 2
  • 9
  • 25
4
votes
5 answers

flexigrid get selected row columns values

I am new to flexigrid. can any one please let me know how to get the selected row each column values.? How to i get each column name(reportName and reportDescription)? because i am push //all the data into array like mentioned below. I am using…
3
votes
3 answers

Flexigrid - adding a column with links

I'm using Flexigrid to display paginated data and it works very well. Now I need to add links to all the rows ("edit", "view", "delete") and honestly I have no idea how to proceed with it. Is there something that I could use right out of the…
Matthias Hryniszak
  • 3,099
  • 3
  • 36
  • 51
3
votes
2 answers

Using a JavaScript function instead of a URL for filling a Flexigrid

Is it possible to use a JavaScript function instead of a URL to fill a Flexigrid? The function I want to use returns a JSON object.
Chris
  • 1,610
  • 3
  • 18
  • 37
3
votes
1 answer

JQuery grid with detail tables

I have a grid that is currently using Telerik Grids, I would like to convert this to using all Jquery with JSON. I would like to know what is the best tool to use. FlexiGrid and jQgrid are the top ones on my list although I can not find any examples…
Boone
  • 1,046
  • 1
  • 12
  • 30
1
2 3
16 17