flexigrid

change column header text on a JQuery Flexigrid?

I have a jquery flexigrid that I'm dynamically changing so that it displays different tabular data. I want, along with changing the data source (via the 'url' which I'm doing successfully), to change the table column header text but can't quite figure out how to do so. So, for example, I want one flexigrid table to display the 'employee...

Jquery's a FREE grid display

I have been using Flesigrid for my CMS and I like it except there are some things I think it could do better like get the column headers from the ajax results rather then in the setup of the flexigrid or having the ability to change the buttons on reload things of that nature. I've been considering a mod of the plugin though I'm not sure...

Is flexigrid really slow on IE6? What other alternatives can I use?

Hello, Is flexigrid (www.flexigrid.info) really slow on IE6? Client wants me to support IE6, and does not want to use Firefox, because most of their users are using IE6. (NOTE: Flexigrid is much faster in Firefox) What other alternatives can I use? Regards, Geff ...

Using Flexigrid with an xml formatted source how do you specify how the xml is formatted?

I have my columns set as follows: colModel : [ {display: 'column1', name : 'column1', width : 200, sortable : true, align: 'center'}, {display: 'column2', name : 'column2', width : 100, sortable : true, align: 'left'}, {display: 'column3', name : 'column3', width : 100, sortable : true, al...

Flexigrid built with jquery: does it support right click row functionality?

Flexigrid is awesome but does anyone know if it supports a right click event on a row? ...

codeigniter with flexgrid

I have just downloaded the flexigrid and examples and tried to execute. In the example, there is a function getCountries, which populates the grid with countries from the database… I tried this and it seems the flexigrid just keeps processing (it says processing and turns and turns)... Am i doing anything wrong. ThanX ...

codeigniter with flexgrid

I have used href link in the flexigrid rows. on Click it takes me to another page. But on click of the row its making the href link to disappear and its visible only after unselecting row. Is there any option to stop selecting the row in flexigrid or how to make the link test visible even on selecting the rows. Please need ur help immd...

Why is Flexigird not working on IE

Hi I have a page with a flexigrid on it and it works on FF,Chrome,Opera except IE. it points out that the error is at line of "if(!btn.separator)" which is null or not an object. Well, every thing inside that block is an error on IE cause i think the error is on the "btn" objects.. has anyone ever encountered this error? this is fr...

Add Checkbox column in flexigrid

The issue about jquery flexigrid using php. unfortunately http://flexigrid.info site is down very often so managed to take some sample code from http://sanderkorvemaker.nl/test/flexigrid/ and worked based on that. The above sample code works now I need to create a grid with a column with checkboxes, So that I can click a couple of tho...

jQuery Flexigrid with ASP.NET MVC

I' trying to use Flexigrid with ASP.NET MVC. I need all the JSON type functionality(searching, sorting, find) except that I'm using foreach in my view and looping to generate the table rows. <table id="gllisting"> <% foreach (var item in Model) { %> <tr> <td> <%=...

Subquery with Flexigrid using CodeIgniter

Hello, I am using CodeIgniter for this project and have chosen to use FlexiGrid for displaying data driven tables in the site's admin tool. The requirement of the project is to display count's and date's related to a record in a query. The only way I know how to do this is to use a sub-query. All of the data is displaying as intended....

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: 'SurgicalProcedure', width: 120, sortable: true, align: 'left' }, { displa...

how to pass new query to Flexigrid?

im trying to pass new query to FlexiGrid using this code: $('#fgAllPatients').flexReload({ query: 'blah=qweqweqwe' }); but when it goes back to the webservice, it simply gets the old parameter and this new one is neglected. help! ...

Flexigrid with IE6 show only headers [SOLVED]

I'm using flexigrid with jquery-1.2.3.pack.js, works fine with firefox but when i try ie6 it show only headers. Searching on the web i've found a discussion on the same bug, and it says to comment this line from flexigrid.js: if (p.width!='auto') g.gDiv.style.width = p.width + 'px'; Tried with this but it dont show the grid anyway.....

JQuery Flexigrid: How to wrap text in flexigrid column?

JQuery Flexigrid: How to wrap text in flexigrid column? ...

jQuery FlexiGrid, set fixed height

it seems that even if i set the height for the flexigrid, it still allows the user to drag the height size. how can i disable this? ...

Redefine/Reset columns in flexigrid?

how to dynamically redefine columns in flexigrid? i have tried the followings: model = [{ .../*some new columns model*/ } ]; target.flexOptions({colModel: model}); target.flexReload(); without any luck :/ ...

How to create a flexigrid with passed variable from another controller in code igniter?

Hi everyone. My problem is kinda silly but I don't know how to do it. I'm creating a standard flexigrid using standard structure: //ver lib /* * 0 - display name * 1 - width * 2 - sortable * 3 - align * 4 - searchable (2 -> yes and default, 1 -> yes, 0 -> no.) */ $colModel['users.id'] = array('id',...

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 with FlexiGrid having nested tables (detail tables), which is a must. My question is, wh...

jquery ajaxsuccess call results in blank page and hang

Hi, I am trying to save data into a variable like so (so i can keep track of what was posted to jquery) $(document).ajaxSuccess (function product(a, b, s) { document.write('url: ' + s.data); }); I am using flexigridlink text and the above code is printing out the correct data, but preventing flexigrid to load, and hanging the pa...