Flexigrid CodeIgniter Implementation |
[eluser]cpomalo[/eluser]
hello i have made some change to work wiyh CI v2. now it run but a grid with 20 empty rows is displayed and the processing cursor run continously calling directly the ajax controller show my records enabling profiler display on flexgrid controler return no query the document.ready script look like this Code: [removed]$(document).ready(function(){$("#flex1"). an idea? thanks Claude
[eluser]Basketcasesoftware[/eluser]
Is your table set up to what Flexigrid requires? Flexigrid is coded to a certain table structure. It handles it's own queries. That's its main failing.
[eluser]cpomalo[/eluser]
Hello the sample from http://flexigrid.eyeviewdesign.com/Flexi..._v0.36.rar work fine with CI v2.0 with minor change according with the CI documentation http://ellislab.com/codeigniter/user-gui...e_200.html Two minor change must be made in ajax_model.php. Calling directly the controler ajax.php show these error. After fixing it, flexigrid sample work fine. in ajax_model.php: comment or remove line 22 Code: $this->CI =& get_instance(); change line 35 Code: $build_querys = $this->CI->flexigrid->build_querys($querys,TRUE); Code: $build_querys = $this->flexigrid->build_querys($querys,TRUE); that'all I have adapted the sample to my own data table but sorting column not work except for the 2 first columns maybe an error somewhere in my modification. claude
[eluser]ReyPM[/eluser]
Hi every: I'm trying to use the Flexigrid implementation posted here http://flexigrid.eyeviewdesign.com/index.php with the new CI 2.0.1 and all are almost done but I'm getting this error with the model: Quote:A PHP Error was encounteredThe code of this file is as follow: Code: <?php What's wrong? Cheers and thx in advance
[eluser]coffak[/eluser]
Hi to all I'm trying to implement the flexigrid, but is not displaying the grid. I have checked the examples and the code, even my ajax controller is returning the data. I'd like to know if any of you have face this problem.. basically the grid is properly created, but the flexigrid is not appearing.. I have compared my code versus the example code and is the same... so if you know the trick, thnks in advance
[eluser]jhepunk[/eluser]
The flexigrid is great, i can save much time. I already implemented flexigrid in my apps following http://flexigrid.eyeviewdesign.com/ instruction it works great except delete id 1. No errors showing but it can't delete first id of the record.. help do you know why?
[eluser]jhepunk[/eluser]
It solved. Sorry my mistake I changed it from. Code: if (is_numeric($country_id) && $country_id > 1) to. Code: if (is_numeric($country_id) && $country_id >= 1) so it can delete id 1 ![]()
[eluser]Ranjith Siji[/eluser]
A Flexigrid implementation 1.1 with codeigniter 2.1.0 using the latest jquery 1.7.2 is on CI Flexigrid. Thanks to Frederico Carvalho.
[eluser]anthrotech[/eluser]
I can't seem to get the pagination to work. Any ideas what I might be doing wrong. When I click on the arrows, the loading icon appears and does not navigate to the next or previous pages. Please share the proper settings and code to make this work. |
Welcome Guest, Not a member yet? Register Sign In |