![]() |
Flexigrid - Lightweight but rich data grid - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22) +--- Thread: Flexigrid - Lightweight but rich data grid (/showthread.php?tid=7179) |
Flexigrid - Lightweight but rich data grid - El Forum - 11-08-2008 [eluser]XeRGi0[/eluser] [quote author="paulopmx" date="1226215330"]nope. sorting and paging are left to the remote server. that's why code is so small.[/quote] Ok... thanx for the answer... I'll try it the other way then... Flexigrid - Lightweight but rich data grid - El Forum - 11-12-2008 [eluser]Unknown[/eluser] I'm kindly AND [b]DESPERATLY asking You for help.[/b] I am trying for several nights, without any sleep, to run flexigrid from CI but, message: >>>>>Processing, please wait ... flexigrid <<<<<< :gulp: is killing me. I'm going to be tottaly crazy. I suppose i am very pain in the @#@!$. I have already red all forums and posts and i still can't to resolve a problem. I received data from ajax_model and ajax also, but in browser I can not see data in the grid. My url in config is Code: http://sef/declan/ and i load database in autoload.php It must be some reason it doesn't work, please try to help me, i will appriciate it. Tank You in advanced, Please help, Tks in advanced B.Grebenar Flexigrid - Lightweight but rich data grid - El Forum - 11-20-2008 [eluser]ruru[/eluser] Hello marcd, I am using this nice grid and also looking for such a feature. Have you ever got it done? I am not sure this can be done with this grid or not. It's important to me. [quote author="marcd" date="1217868129"]Hi there! I dont know if anybody already "solved" this problem I have... Does anybody know how to add checkboxes to this grid with storing the selected values while paging? I mean when you select some checkboxes on page 1 and then go further to page 2, select boxes there AND THEN switch back to page 1: all before selected boxes should be selected again... something like here... but I unfortunately cannot transfer this to flexigrid... ![]() http://www.sigmawidgets.com/products/sigma_grid2/demos/example_checkbox_paging.html anybody an idea? would be a very great feature to flexigrid with combining to form usage. bye, marcd[/quote] Flexigrid - Lightweight but rich data grid - El Forum - 11-21-2008 [eluser]kadanis[/eluser] Hey there, First off, amazing app. This data grid is really excellent. Thanks ![]() I need a little help with a small addon I'm trying to write for it and I wondered if you have time to point me in the right direction. Basically, I'm using it to return lists of results from a filter. I'd like to have it included into the form so that it updates over the ajax (like your paging and search features) but can't see how to include my checkboxes and other form values into the post that is sent over ajax along with Flexigrid's values Cheers Flexigrid - Lightweight but rich data grid - El Forum - 11-27-2008 [eluser]Leonid_78[/eluser] Hello guys. First of all, sorry for my bad english. Good script. Very good. But I have a problem. If you can, please help me to understand, what a problem... I have javascript error in IE7. Line: 796 Char: 6 Error: 'display' is null or not an obect Code: 0 I use XML and in post.php show me normal XML from my SQL table. There are my javascript code: Problem in colModel 'display' variable. If delete it, IE7 don't show any error, but FlexiGrid don't working right. In Opera FlexiGrid showing, but I see only a grid with repeat animation (loading) and nothig more, i mean my data from MYSQL table. Help plz, I need to using this folk! Respect to developer. <table id="flex1" style="display:none"></table> [removed] $("#flex1").flexigrid ( { url: 'post.php', dataType: 'xml', colModel : [ {display: 'id', name : 'id', width : 100, sortable : true, align: 'left'}, {display: 'name', name : 'name', width : 100, sortable : true, align: 'left'}, {display: 'title', name : 'title', width : 100, sortable : true, align: 'left'}, {display: 'status', name : 'status', width : 100, sortable : true, align: 'left'}, ], buttons : [ {name: 'Add', bclass: 'add'}, {name: 'Delete', bclass: 'delete'}, {separator: true} ], searchitems : [ {display: 'name', name : 'name'}, {display: 'title', name : 'title', isdefault: true} ], sortname: "id", sortorder: "asc", usepager: true, title: 'Directory', useRp: true, rp: 15, showTableToggleBtn: true, width: 700, height: 200 } ); [removed] Flexigrid - Lightweight but rich data grid - El Forum - 11-28-2008 [eluser]kadanis[/eluser] @Leonid. Just a small note, as I noticed after posting here myself. The Flexigrid forums have moved to http://groups.google.com/group/flexigrid/ You're more likely to get a response there. Flexigrid - Lightweight but rich data grid - El Forum - 11-29-2008 [eluser]Leonid_78[/eluser] kadanis Big thx! Flexigrid - Lightweight but rich data grid - El Forum - 02-13-2009 [eluser]GrayFoxbh[/eluser] Hi guys, I´m new here and in my website I´m starting to use this amazing plugin. With the jqModal I´m using the Add/Delete/Edit buttons using a popup and sending the information by ajax. This is working fine. But I came across with a question ( sorry if this has been answered but I didnt see): Is there a way to allow the user to select just one row? Does someone here implemented it? Flexigrid - Lightweight but rich data grid - El Forum - 02-23-2009 [eluser]Unknown[/eluser] [quote author="paulopmx" date="1207236414"][quote author="slith" date="1207212195"][quote author="paulopmx" date="1207211002"][quote author="slith" date="1207210254"]awesome job with this script paulo! just wondering...is there a way to hide /toggle the grid by default when the page loads?[/quote] just place the table in a div then hide that div[/quote] well i dont want to hide it completely, i simply want the grid hidden, with only the title and toggle button visible...like what you see when you click on the toggle button.[/quote] try this jQuery code that adds a class after calling the grid Code: $('.flexigrid').addClass('hideBody'); dont work ![]() I tried this : Code: function Hidegrid($id_grid){ .. and it work perfectly ![]() Flexigrid - Lightweight but rich data grid - El Forum - 02-25-2009 [eluser]GrayFoxbh[/eluser] Is there anyway to make de Columns with a width equals a percentage value? Like width: 60% |