Search
43826 results 7191-7200
Forum
- 10th Jun 2016How do you wrap responsive columns? Column is running off the table.I have an example https://jsfiddle.net/wwisner/kbod2o1d/#&togetherjs=KmKCxN0RPH The row with Tiger will show that the column 'Very Long Description' is running off the page. I would like this column to wrap when responsive causes it to hide. I have looked through the documentation and can't find a solution. I tried to create a class and apply that class to the column but that did not work for me. .td-limit { max-width: 70px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } "targets": 1, "className": "td-limit",
- 27th May 2016data table bootstrap not lining up when dom: usedEverything looks great if i use the defaults, but if i want to add buttons and use the dom attribute to specify which controls should show, the controls no longer show on the same line but on different lines. Example: Just using the default it lines up nicely like this: http://screencast.com/t/QKT5E8Qs but if i add buttons and declare dom: 'Bfrtip', buttons: [ 'copy', 'csv', 'excel', 'print' ] All of the controls are now on their own line like this: http://screencast.com/t/B8PQr2gC10A How would i go about getting them lined up nicely like the default shows
- 25th May 2016how to restrict the number of pages using data table pagination ?for example i have 100 records , 10 records for each page. i want to display 5 pages and on click of next/last displayed page no the next set of data has to be displayed.
- 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?