![]() |
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 - 10-26-2012 [eluser]php6[/eluser] Greetings, anyone can help me I'm using the csv library and I can not do this query with the methods afforded me by this library example Code: Select * Ignited DataTables - El Forum - 10-31-2012 [eluser]ninjayan[/eluser] Hello it's me again. My ignited datatables are now working and I added a column for delete action. controller Code: public function get_transaction_types() view Code: <div id="transaction_type_table_container"> My problem is I want to have a popup box (confimation box) when I click the delete button in action column. I try to add jquery on click to the button='settings-action-btn' to alert but nothing happens. Any suggestion? Ignited DataTables - El Forum - 11-11-2012 [eluser]ninjayan[/eluser] Anybody can help me? Please? Ignited DataTables - El Forum - 11-12-2012 [eluser]Unknown[/eluser] DataTables needs to have an actual tutorial video... it's way to complicated. Not necessarily your CI Library, but the entire jQuery plugin. For beginners like me, it's just impossible to get started. You can look at all the examples as I have done and still not get a single piece of it. I still get a 400 error when trying to use the server-side implementation, and believe the problem may lie in my initialization. I don't understand what aoColumns are, or what needs to be in there, and what doesn't. Is there anything similar to DataTables but easier to use? Ignited DataTables - El Forum - 11-12-2012 [eluser]ηυмвєяσηє[/eluser] http://vimeo.com/25273887 i've made a video about how to use it some time ago.. but it has no sound. give it a try ^^ Ignited DataTables - El Forum - 11-15-2012 [eluser]ninjayan[/eluser] Hello. My ignited datatables code get the name and days and $1 is the name. Code: "<form id='edit_form' method='post' action='settings/edit_transaction_type/$1' class='left'> I want also to store the days on another hidden field. How would that be possible? thanks! Ignited DataTables - El Forum - 12-11-2012 [eluser]cryogenix[/eluser] [quote author="ninjayan" date="1351669761"]Hello it's me again. My ignited datatables are now working and I added a column for delete action. controller Code: public function get_transaction_types() view Code: <div id="transaction_type_table_container"> My problem is I want to have a popup box (confimation box) when I click the delete button in action column. I try to add jquery on click to the button='settings-action-btn' to alert but nothing happens. Any suggestion?[/quote] try attaching an onclick event to your button: Code: onclick='if(confirm("Are you sure?")) document.forms["delete_transaction_type_form"].submit(); return false;' Ignited DataTables - El Forum - 01-01-2013 [eluser]Unknown[/eluser] Code: function view_user() Also can anyone help me where to write the callback function Ignited DataTables - El Forum - 01-04-2013 [eluser]ninjayan[/eluser] there's a problem on the code? please see the attached screenshot..thank you.. ![]() Ignited DataTables - El Forum - 01-07-2013 [eluser]Unknown[/eluser] Hello, i have 2 table. "category" and "post". category has 2 field : categoryId and categoryName. post has 3 field: postId, title, categoryId now i want to show datatable categoryName and number of post according to this category. how can i show this. Regards, Rejuan |