Search
11455 results 2151-2160
Forum
- 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.
- 17th May 2014Reset Result FilterOlá, bom dia a todos! No meu projeto (server-side) adicionei date-range para pesquisa de intervalo de datas, onde está funcionando perfeitamente. Porém estou com um problema no momento de limpar a pesquisa. Estou utilizando o seguinte código para limpar os campos e retornar o resultado inicial: "sButtonText": " Limpar", "fnClick": function ( nButton, oConfig, oFlash ) { var oSettings = oTable.fnSettings(); for(iCol = 0; iCol < oSettings.aoPreSearchCols.length; iCol++) { oSettings.aoPreSearchCols[ iCol ].sSearch = ''; } oTable.fnDraw(); $("#example :input").each(function(){ $(this).val(''); }); } } Quando efetuo a pesquisa por um único campo, o retorno é satisfatório, porém quando utilizo o date-range, preciso acionar o comando acima 2x para poder limpar o resultado e retornar aos dados iniciais. Alguém poderia me dar uma ajuda? Grande abraços a todos.
- 11th Apr 2014Shrinking column filter date-range inputThis is the basic code example. The goal is to reduce input width. [code] $(document).ready(function() { $('#example').dataTable() .columnFilter({ sPlaceHolder: "head:before", aoColumns: [ null, { type: "date-range" } ] }); }); [/code]