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
3
votes
6 answers

how do you pass parameters in asmx using Flexigrid?

here's my code: $('#flex1').flexigrid({ method: 'POST', url: '/services/MHService.asmx/GetSurgicalHistory', dataType: 'xml', colModel: [ { display: 'Surgical Procedure', name:…
Martin Ongtangco
  • 22,657
  • 16
  • 58
  • 84
3
votes
5 answers

What is the fastest JSON parser for JavaScript?

I want to show a list with 1000 rows using Json that's support by Struts2 like pug-in. I use flexigrid (jquery) to parse 1000 rows to display. But it's so slow, and sometimes my browser crashes. (Firefox & IE). So, what is the fastest Javascript…
m0z4rt
  • 1,055
  • 2
  • 17
  • 25
3
votes
1 answer

Slickgrid or Flexigrid

My colleagues and I are arguing which grid plugin is best and we each have valid arguments, but we can't seem to reach a conclusion. So here is my question, why is slickgrid better than flexigrid?
KO.
  • 173
  • 3
  • 18
3
votes
2 answers

Uncaught Error: Syntax error, unrecognized expression: #

I am trying to obtain a cell's text value from a flexigrid. However I keep getting that error. This is my function for retrieving a specific cell's text(Flexigrid doesnt have "attr" it has "abbr" instead). function getSelectedCopyDates() { var…
user1084319
  • 299
  • 3
  • 9
  • 27
3
votes
1 answer

Flexigrid loading data from local json object

I am trying to fill flexigrid table from local created json object, using this code: var rows = new Array(); rows.push({cell: [1, 2, 3] }); rows.push({cell: [11, 22, 33] }); rows.push({cell: [111, 222, 333] }); var data = { total: 3, …
jasin_89
  • 1,993
  • 7
  • 30
  • 41
3
votes
2 answers

Does not want to resize columns in Flexigrid

I want to disable column resizing in Flexigrid. Is there any option like colresize:false/true ? I could not find any.
Ashwin
  • 12,081
  • 22
  • 83
  • 117
3
votes
1 answer

jQuery Flexigrid hide column dropdown

There is a dropdown by default on each column which when expanded shows all the columns with checkbox. I do not want to show the dropdowns in any of the columns. Please tell me how to do that? Do I have to go into the script to remove it?
Ashwin
  • 12,081
  • 22
  • 83
  • 117
2
votes
1 answer

Anyone used jquery flexigrid with ASP.NET MVC3?

I am trying to use flexigrid with asp.net MVC3. I can't see any online examples for this. Has anyone done that? If yes, can you paste little code snippet here please? thanks
alice7
  • 3,834
  • 14
  • 64
  • 93
2
votes
1 answer

Is Flexigrid wildcard search possible in the "quick search"?

Flexigrid is a nice jQuery grid, and pretty customizable, but the quick search feature only allows for exact searches (as far as I can tell). Anybody know a fix or workaround for this? I've tried adding wildcard characters to the "p.query" string,…
gtr1971
  • 2,672
  • 2
  • 18
  • 23
2
votes
1 answer

FlexiGrid - set width of Grid in code

I'm trying out Flexigrid for a new app - I'm really impressed with it but I can't find a way to set the width in code. The main reason for this is to get the GRID (not the columns inside the grid) to align fully to the size of the window. I know,…
Duncan
  • 10,218
  • 14
  • 64
  • 96
2
votes
2 answers

Codeigniter: using datagrid

i'm looking for implement datagrid with CI, better if using ajax. Searching on Google i've found many tutorial and discussion on how to use Flexigrid-4-CI or jqGrid, anyway i'm still confused on which one could offer more flexibility. For example,…
Luciano
  • 1,455
  • 8
  • 22
  • 52
2
votes
1 answer

Js autoload function is not working on flexigrid

Well... I am using flexigrid and grocery crud and i am trying to autoload table with js function. I have followed these steps to do this but it isn't working. Table should auto refresh each 5 seconds when something new is added. What am i doing…
Jose
  • 87
  • 1
  • 8
2
votes
1 answer

On Row Click disable/enable a button depending on content of a cell in that row

I'm currently using the flexigrid.js plugin and there is a button that I wish to enable/disable depending on whether a certain cell in the currently selected row is equal to a certain value. Here is where I am currently at: I thought to add the…
Bobby
  • 18,217
  • 15
  • 74
  • 89
2
votes
1 answer

Using the Flexigrid plugin for jQuery on an HTML table, not on XML file

I trying to use the Flexigrid plugin for jQuery which seems perfect for what I am being asked to do to do. Now what I'm working with is an HTML table, and I don't have the ability to change it. The above site has three examples. The first two seem…
George
  • 21
  • 1
  • 2
2
votes
0 answers

How to send dynamic columns in jquery flexigrid

i am not sure how can i pass dynamic columns along with the default paramters e.g. rp, sortname, sortorder in jquery flexigrid. i have read articles but that only suggest to pass the dynamic column on onSubmit event. i am confused how can i embed…
Hammad Bukhari
  • 73
  • 3
  • 14
1
2
3
16 17