Search
11364 results 2131-2140
Forum
- 30th Aug 2014Datatable filter huge amount of datasetsfilering stuff there. Because filtering on server-side based on
- 15th Aug 2014Filter parameter sent by fnFilter is empty (server side processing)Hi everybody, just a short question: I'm using server side processing and would like to use an external search field for a global search. The global search is initiated through a key up event on a text field which then calls the fnFilter function of the datatable. But on the server I can only see an empty string. If I use the internal global search field it is working. Is there any additional setting which is neccessary? Cheers, Chris
- 12th Aug 2014[TableTools] Print button show data before filter, why XLS doesn't do the same thing ?Hi everyone ! I try so hard to get XLS button as the print one. I want to do this but i don't find how to... : Rename the Print button to Export button, it will be create the same page as the Print one but with XLS, CSV and Copy button. Can you help me ? Thank you !
- 19th Jul 2014Column width changing when i sort of filter or search in the tableWhen i click on the columns to sort or type in search column to find any particular data from the table, the entire datatable's structure is breaking by increasing and decreasing the width of the columns. I have seen in someother questions in which it is resolved by removing the sScrollXInner:100% it worked. But for me i have never used it as "sScrollXInner": "", only, I am using the latest version on Datatable but couldnt find which version it is. Can anyone please help me to sort this out
- 14th Jul 2014I would like to do a filter with columnfilter() but I need to make an external input...inside the input the filtering work. I saw some
- 9th Jul 2014Search filter is including the table header rowunderlying rows, then no filtering takes place. Is this
- 7th Jul 2014issue on Filter menueHello, could we get help please? Please visit: http://logbook.klarlichter.de/flightmanager/flights-overview-flighttime.php why the page will reload if we press calendar icon? And if there is any possible to get the total of time and landings if we select a pilot and the 2 dates?
- 27th Jun 2014Why does my datatable reload where I change length or start typing in filter input box?var tables = $.fn.dataTable.fnTables(true); $(tables).each(function() { $(this).dataTable().fnDestroy(); }); $('#tableoutrequisicoes').dataTable( { "dom": "<'row'<'col-md-8 col-sm-12'l><'col-md-4 col-sm-12'>f><'table-scrollable't><'row'<'col-md-8 col-sm-12'i><'col-md-4 col-sm-12'p>r>", // datatable layout "lengthMenu": [ [20, 50, 100, 150, -1], [20, 50, 100, 150, "Tudo"] ], "processing": true, "serverSide": true, "pageLength": 20, "ajax": { "type": "POST", "url": Paths.init('units') + 'armazem/renderrequisicoes', "data": function ( d ) { d.query = $('#query').val(); d.reftipo = $('#rowsysdocumento').val(); d.serie = $('#serie').val(); d.numero= $('#numero').val(); } }, "columnDefs": [ { "targets": [0], "visible": false, "searchable": false } ], "order": [ [1, "asc"] ] } );
- 5th Jun 2014How to control table width with text filter?When I use the API "Individual column filtering (text inputs)", table will wider than browser window. I guess css gave them "
- 19th May 2014Search filter input not working inside JqueryUI Dialog.Hi everyone! I have been using datatables for a while, the last week I used it inside a jquery ui dialog and I found that the input search field was not working, the input show correctly but I can“t use it, it has the focus, but keyboard is disabled. I load the datatable inside a div using the $.load method available in jquery, after that the datatable in initialized and then I show the dialog, the search box has the focus, but keyboard no working. Any idea? Thanks.