Search
43891 results 7091-7100
Forum
- 3rd Oct 2011Table sorting issueHi Peter, I want to say thanks very much for the creator of the plugin. It is very useful. My pleasure - great to hear that you are finding it useful! For your question - what you want to do is use the natural sorting plug-in: http://datatables.net/plug-ins/sorting#natrual . That will "chunk" your data to have it sorted as you would expect. Allan
- 22nd Sep 2011Removing whitespace in table headersAllan, Just to give you a heads up - I tried the 1.8.3.dev file that's currently on the site and it still does this for me in the header and footer. Plus, I found that if I added the following at line 2817: [code] anCells[i].innerHTML = $.trim(anCells[i].innerHTML); [/code] If got rid of the extra spaces in the footer cells. Hope that helps.
- 30th Aug 2011formatting: Totals or table data?They are text string - that's why :-). If you what DataTables to treat them as numbers, you would need to use a sorting plugin such as this one: http://datatables.net/plug-ins/sorting#formatted_numbers Allan
- 7th Aug 2011Column resizes outside table bounds?PLease see this thread which covers a similar topic: http://datatables.net/forums/discussion/6073 . Allan
- 28th Jul 2011Hidden table rows not selectable with jQuery?Update: I found a way around the problem by putting the style="display:none"; directly in the td and th html and making the bVisible true for this column. I'm still kind of curious about this though--seems a bit ugly to solve in either of the two ways I could think of.
- 29th Jun 2011Table designI've added a reply to your original question here: http://datatables.net/forums/discussion/comment/22417#Comment_22417 Allan
- 21st Jun 2011[v1.6.2] hidden row information in table with new queryHi, had the same problem, thanks to your help i got it to work within minutes :) [code] function fnFormatDetails(nTr) { var aData = oT.fnGetData(nTr); var sOut; $.ajax({ url: 'yourServiceURL', data: '{}', type: 'POST', contentType: 'application/json; charset=utf-8', dataType: 'json', success: function (result) { sOut = 'Detailed information: ' + result; oT.fnOpen(nTr, sOut, 'details'); } }); } [/code]
- 6th Jun 2011Table disappears in Internet Explorer on leaving a drop-down listThanks!
- 27th May 2011Update table, then filter - not working!actually sorted this out - i had a little bit of a mess with hidden columns and jquery updates. sorry for the inconvenience! wonderful work
- 9th May 2011Getting onClick event on link inside the tableIt is quite a common thing, and it's in the FAQs: http://datatables.net/faqs#ss_events :-) . I'd suggest just using a live event rather than $().click() for this, since it will be much easier to maintain. Allan