![]() |
Ignited DataTables - 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: Ignited DataTables (/showthread.php?tid=32173) |
Ignited DataTables - El Forum - 02-03-2012 [eluser]Ferry Lukito[/eluser] @cryogenix thanks.. [quote author="ηυмвєяσηє" date="1328253797"]Probably he didnt / couldnt setup .htaccess file.[/quote] i think so, i will check it. thanks so much Ignited DataTables - El Forum - 02-09-2012 [eluser]axmed[/eluser] if user has JavaScript turned off will this library still work? since produce_output function outputs json encoded string, how to change it to output html for progressive enhancement. a plain HTML table, drawn for the benefit of people who dont have JavaScript enabled thanks Ignited DataTables - El Forum - 02-12-2012 [eluser]cryogenix[/eluser] no it will not work. Ignited DataTables - El Forum - 02-14-2012 [eluser]Unknown[/eluser] Is Version 0.6 the last available version? Ignited DataTables - El Forum - 02-14-2012 [eluser]cryogenix[/eluser] yes. Ignited DataTables - El Forum - 02-27-2012 [eluser]redraw[/eluser] please help my model Code: $this->load->library('Datatables'); why if statement on 'select' query isn't work? i have been tested on sqlYog is work fine Ignited DataTables - El Forum - 02-28-2012 [eluser]redraw[/eluser] SOLVED i just add 'FALSE' on my script Code: $this->datatables->select("nama, IF(jenkel=1, 'PRIA', IF (jenkel=2, 'WANITA', jenkel)) AS jenkel", FALSE) Ignited DataTables - El Forum - 03-01-2012 [eluser]roomm[/eluser] hi everyone! i'm starting with codeigniter and i need a jquery datatable. i don't know how to join codeigter and this library. please can someone help me with onine example? thanks for everything! Ignited DataTables - El Forum - 03-04-2012 [eluser]cryogenix[/eluser] try the wiki if that will shed some light for you: https://github.com/IgnitedDatatables/Ignited-Datatables/wiki/Method-Chaining i will try to give a full blown example as soon as i get some time off... really really busy right now so i'm kind of sorry for the inactivity... Ignited DataTables - El Forum - 03-05-2012 [eluser]roomm[/eluser] hi! thnx for the reply! i'm working on it! i thing it works nearly well because it shows the number of result properly but not show any result only a messagebox saying: DataTables warning(table id='test'): Requested unknown parameter '0' from the data source for row 0. the controller: Code: <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); and the view: Code: <html> thanks for the help! EDIT: that works! nothing to solve! |