Search
43826 results 7221-7230
Forum
- 9th Jan 2016Add jQuery UI Selectmenu to table headerIs there any way to add a jQuery UI widget, like Selectmenu, to the header? I would like to add the Selectmenu widget between the length and filter input controls. This code just replaces all the header input controls with the HTML... jQuery(document).ready(function() { var myTable = jQuery('#my-table').DataTable( { "dom": '<"fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix ui-corner-tl ui-corner-tr"lfr>'+ 't'+ '<"fg-toolbar ui-toolbar ui-widget-header ui-helper-clearfix ui-corner-bl ui-corner-br"ip>', }; jQuery(".fg-toolbar.ui-toolbar.ui-widget-header.ui-helper-clearfix.ui-corner-tl.ui-corner-tr").html('<b>Custom tool bar! Text/images etc.</b>'); } Edited to change autocomplete to Selectmenu...
- 29th Dec 2015Adding button to editables - Join Table - One to Many JoinHi, I need to insert a button for each row ( or a link ) OR It's possible from joinArray.php replace the id value with this '<a href="link.php" target=_blank">BUTTON1 Help really appreciated
- 15th Dec 2015How to know data table functions usage?How can we find Search function, Records per page function, Pagination function and Sort order function? And How to write Ajax in that functions?
- 11th Dec 2015Table Column Titels JSONI'm using server side datatables. Is there posibility to use column object from ajax response for datatable columns( and options) ? Example JSON: { "recordsTotal": 95, "recordsFiltred": 95, "data": [], "columns" : [ {"title":"column1", ...}, {"title":"column2",...} ] }
- 4th Dec 2015Can I change the number of entries being displayed in table? (The default is 10). Can I change it?Not critical, but it would be nice to be able to change the value. Thanks!
- 13th Nov 2015Failing to put negative int in tableI actually posted my question to stack overflow before I realized that there are forums here. I am hoping that simple linking to that, and having code formatting is not a violation of these forums. http://stackoverflow.com/questions/33701224/jquery-datatables-net-failing-to-put-negative-int-in-table
- 9th Nov 2015Filtering Data Table Select Option's sortingHi!, I have a problem with sorting. It only sorts like all data is string. Could you help me? Is there any solution with this case?
- 29th Oct 2015¿It's possible to have an horizontal scroll bar on top of the table?I see there is a closed post in the forum dating 2013 and I want to know if there are improvements in that point.
- 25th Sep 2015How to change datatable settings like 'pagingType' after table initialization using apiI would like to change my tables pagingType to simple if the window is smaller than x width. (actual I would like to know how to change any settings) my window example : $( window ).resize(function() { if ( $( window ).width() <= 1183 ) { $.fn.dataTable.defaults.??? = 'simple'; dtable.draw(); }
- 31st Aug 2015Export all database table data by just clicking export excel button.Hi, I have gone throw many posts but I didn't find the solution for my below question "How can I export the all data which is there at sever side? I have paging at my page so I always load minimum amount of data to the datatable. But when I click on export I need to export all the data available at server side". Can some one help me how can I do it, or please provide me some solution.