Search
19119 results 16051-16060
Forum
- 15th Sep 2013Jquery functions not working on ajax loaded dataSince the table data was created after the page was loaded, you must use the jQuery "live" event using the .on() function. For example: [code] $("img").on("click", function () { alert("test"); }) [/code] or [code] $(document).on("click", "img", function () { alert("test"); }) [/code]
- 15th Sep 2013Setting options in HTML attributes possible?data-paginate="1" data-pagelength="20"> id sort-created created description sort-playdate actions [/code]
- 13th Sep 2013Customized Row Reorderingsome modifications -- The row created callback now sets the
- 12th Sep 2013Responsive Datatables with Footable-like Behavioradded, three tables are created in order to have
- 3rd Sep 2013Two line detailnicely as rows are created on every draw. Interestingly
- 29th Aug 2013Columns and IDs SortingSo this is the correct way to perform this in a global js file. [code] /* DataTables */ if ($('.dynamicTable').size() > 0) { $('.dynamicTable').dataTable({ "sPaginationType": "bootstrap", "sDom": "<'row-fluid'<'span6'l><'span6'f>r>t<'row-fluid'<'span6'i><'span6'p>>", "oLanguage": { "sLengthMenu": "_MENU_ records per page" }, aoColumnDefs: [{ aTargets: [ 'check', 'id', 'actions', 'created'], bSortable: false }] }); } [/code]
- 24th Aug 2013Click table row to open editor lightbox for that entry?exist until it is created by DataTables since you
- 23rd Aug 2013Can I insert search div into another div?is there any way to do this already? Two options: Use the fnFilter API with your own input element Move the DataTables created input into your div after the table has been created Allan
- 19th Aug 2013Adding id and for attribute to filter box and length dropdown elements of data tableThe filter input is inside the label which creates an implicit connection between the input and the label - there is no need for a for attribute (which creates an explicit connection). This is defined in the HTML specification: http://www.w3.org/TR/html401/interact/forms.html#adef-for . Allan
- 19th Aug 2013use copy_csv_xls_pdf.swf to convert a page to pdfNo - that file is not an HTML to PDF converter. It simply creates a simple PDF table. Nothing more nor is it intended to do anything more. Allan