Search
23531 results 3051-3060
Forum
- 25th Jul 2014Is it possible to apply DataTable to Nested tables ? Like some of the columns contain inner tableMy requirement is In some row there will be an table and for some of the rows there is now table just data, in this case i need to apply datatable to this, I already tried applying datatable but all inner tables showing first and next the rows which are not having inner tables are showing, But my table structure is changing , that should not be done Please look at below screenshot how my data will look like http://www.evernote.com/shard/s390/sh/28cc5ec4-c3c0-47c0-9766-42786ba6d890/121ea11fd3749697b154dabff25c9ba0 and http://live.datatables.net/cayepib/2/edit
- 8th Jul 2014Using bHideGroupingColumn how to replace the hidden columns with a letter or symbol such as "-"After hiding a column.. or instead of hiding the column how do you replace repetitious data with an symbol such as "-"
- 15th Jun 2014Columns Render Error on DisplayI am using dataTables with Ajax. I have a column that contains an 'action_date' and in some cases, this will be null. I am formatting this column using moment.js for display. I get the 'datatables.net/tn/4' error. If you clear the dialog, the table will draw correctly, but I can't seem to get the error to stop. I added the default_content value as suggested on the error page. I have also tried removing the null comparison. Neither of these work. I have recreated my issue in the following bin: http://live.datatables.net/tedulub/1/edit The Ajax data in the bin has a date that I was able to use. Obviously, I can't make some of them null, but I left the null logic in my function anyway. I also included my real function in comment, just for reference. I'm sure I'm missing something obvious, but staring at it for hours isn't working. Thank you for your help.
- 10th Jun 2014How to retrieve current order of columns after reorder?This seems like it should be simple, so I must be overlooking something. I'm trying to retrieve the current column ordering so that I can save it on the server. Is this not possible with the ColReorder plugin? or even DataTables.api ?
- 1st Apr 2014Sorting columns with German 'Umlauts' the right way. ä, ô, ü... etc.Hi Fellaz! Please! I need your help. The standard sorting option does not sort the Column with German Umlauts the right way. Alaska Berta Egon Ägeri For example Ägeri should be at the first place. (ä = ae) Ägeri Alaska Berta Egon How can I manipulate the datatable config script or whatever to fix this issue? Thanx for helping a Datatable Beginner. Funkybrotha UPDATE! OK, I have found the solution here: http://www.datatables.net/forums/discussion/8348/filtering-and-sorting/p1 Thanx Phu!
- 7th Mar 2014Modifying columns after ajax, before showWhat is the best way how to modify row column content, e.g. add a button? Now I am doing it with: "fnRowCallback" : function(nRow, aData, iDisplayIndex, iDisplayIndexFull) { $('td:eq(0)', nRow).html(... $('td:eq(1)', nRow).html(... DataTables load is very slow when I use this way. Is there any better way? I want to be able to add some buttons, input and so on. I'm using "bProcessing" : true, "bDeferRender" : true. Thank you
- 5th Jan 2014DataTables server-side processing Add optional columnsI am working with DataTables server-side processing http://datatables.net/release-datatables/examples/data_sources/server_side.html How can I add one column at the end like this picture is not? http://i.imgur.com/0Vq6uje.jpg Not used Editor. Please help me. I thank you very much for your enthusiastic help.
- 10th Dec 2013Trying to make a fixedColumn + resizeable columnsHow will i go about doing it ? i mean fixed column plugin separate 1 table into 2, how do it do the sorting across 2 tables ?
- 4th Dec 2013Why the table columns are unnecessary wide and how can I avoid it?This is my initialisation: $('#tablaOpciones').dataTable( { "aaSorting":[], "sScrollY": "180px", "bAutoWidth": false, "bPaginate": false, "bScrollCollapse": true, "bInfo": false, "bFilter": false }); The table cloumns in my table are almost the double wide than the content inside. I cant get rid of the X scroll, what can I use if bScrollAutoCss is now deprecated and the !important in the stylesheet had no effect. .dataTables_scrollBody{ overflow-x:hidden !important; }
- 24th Oct 2013How can i define multiple alignement columns ?Look at this : [code] var somevar = $('#somediv').dataTable({ "bProcessing": true, "bServerSide": true, "sAjaxSource": "someurl", ====> "aoColumnDefs": [ { "sClass": "center", "aTargets": [ 2 ] }, { "sClass": "right", "aTargets": [ 5,6 ] } ] }); [/code] What's the best practice to do this something like that ?