Search
43891 results 7201-7210
Forum
- 10th May 2016how to set an no-data tableI wanna to see the local no-data table's style,how to set it
- 29th Apr 2016Positioning data table pagination, search, length and information boxesHi I need to position datatable components as below 1 , Pagination on bottom left 2 , Search on Top Right aligned 3, Length on bottom right 4, Information box after pagination Any suggestions how i can do, i am using datatables 1.10.9 with datatables bootstrap css and js
- 25th Apr 2016dataTable server side with table column filter with multiple checkboxHI, I am using server side datatable it is working fine. I want to apply the filter in each column with multiple checkbox these parameter send to server side then apply the filter as well as front end check box should be checked. how can i work this
- 13th Apr 2016datatable jquery - table header width not aligned with body widthI am using datatables jquery, When running the application, the header width is not aligned with the body width.But when I click on the header, it is getting aligned with the body width but even then there is some light misalignment.
- 11th Apr 2016How to preserve the actual index of rows after sorting tableHow to preserve the actual index of rows after sorting a column with the index same during the initial loadAfter sorting the row index resets back from 0 .
- 29th Mar 2016Responsive table with select, can not get value of rowHello, Datatables, all version and plugins are updated to latest version, 1.10.11. I have datatable with responsive design, view works fine, But when i tried to get values of row when i click on button, i could not get value and console shows "Uncaught TypeError: Cannot read property 'ticket_id' of undefined" If i maximize full screen, means desktop mode can see all columns, it get correct values and page get redirected, $('#tickets_table tbody').on( 'click', '#ticket_open', function () { var ticket_data = table.row( $(this).parents('tr') ).data(); window.location.href = baseURL + 'agent/core/tickets/ticket_details/'+ticket_data['ticket_id']; }); I assume when its in responsive mode, few column becomes seperate rows and it lost relation with its parent, Am i doing something wrong? Thanks,
- 25th Mar 2016Child row table used for adding new entryI was wondering if it is possible to add a new entry using child row editing, as opposed to opening a modal to accomplish that?
- 25th Mar 2016How to format data and hide a column when export table to pdfHi all, i would like to ask how to do these two process together? i want to format my check box data to yes or no (case 6,7), after when i export my datatable to PDF/copy/, i do not want to export all the columns. my code can do either one only. i want to hide my column 5, which is case 4. Below source code is my datatable's javascript. $(document).ready(function() { var buttonCommon = { format: { body: function ( data, columnIdx, rowIdx ) { var returnData = ''; switch (columnIdx) { case 0: { returnData = data; break; } case 1: { returnData = $(data).text(); break; } case 2: { returnData = data; break; } case 3: { returnData = data; break; } case 4: { returnData = data; break; } case 5: { returnData = $(data).find('textarea[name=message]').val(); break; } case 6: { returnData = ($(data).is(':checked')) ? "yes":"no"; break; } case 7: { returnData = ($(data).is(':checked')) ? "yes":"no"; break; } } return returnData; } } }; var table1 = $('.dataTable').DataTable( { paging: false, dom: 'Bfrtip', stripHtml: true, buttons: [ 'copy', {extend: 'csvHtml5', text: 'CSV', exportOptions: buttonCommon,}, {extend: 'pdf', text: 'PDF', exportOptions: buttonCommon} ] } ); } );
- 21st Mar 2016i am using ellipses for text overflow for table cells & i wants to show tooltips for txet overflowshow to solve above problems
- 16th Mar 2016table doesn't initially show additionsSo here is my question: http://stackoverflow.com/questions/36042224/using-jquery-datatables-js-1-10-11-the-table-doesnt-initially-show-additions-t