Search
43827 results 6981-6990
Forum
- 29th Apr 2014Table headers misaligned when using Tabs and ScrollAllan, Thanks that seems to have been my issue. I uploaded the 1.9 version. However I have another script with the same JQuery script and the first tab is still not aligned properly. The 2nd tab on this other script is correct. The only difference I can tell between the two tabs is that the first tab is generated with some php code that pulls data from my database and the 2nd tab is static data, copied and pasted from my first test case I gave you. The test case that I gave you earlier works like it should. Both tabs are static data and both tabs line up properly. Here is a link to my 2nd test case http://cosys.carefitllc.com/my_orders2.php Here is the link to my first test case again http://cosys.carefitllc.com/test_case.php Any ideas as to why my 1st tab in my_orders2.php do not line up properly?
- 15th Apr 2014i am not getting automatic generate html markup and didn't show table data, it displays columns onlyhttp://datatables.net/forums/discussion/12899/post-test-cases-when-asking-for-help-please-read
- 7th Apr 2014Checkbox problem with data tableMaybe similar to this?: http://datatables.net/forums/discussion/14151/checkbox-select-checkboxes-all-only-works-once/p1 Try changing attr to prop
- 5th Apr 2014fnDraw Not Updating Table ContentsPlease link to a test case showing the issue, as clearly stated in the forum rules. Allan
- 31st Mar 2014Hightlight Selected row in server-side process tableReplace: $("#dataTableCar tbody tr").click(function (e) { With: [code] $("#dataTableCar").on( 'click', 'tbody tr', function (e) { [/code] See the jQuery documentation here: https://api.jquery.com/on/ Allan
- 27th Mar 2014How to add thousand separator in my table which show reportDataTables does not format the numbers automatically for you. If you want to do that, use the mRender option and format the number as required. The sInfoThousands option is only used for the numbers that DataTables directly controls - i.e. those in the paging information section. Allan
- 22nd Mar 2014Table Header QuestionYou can either remove the cursor:pointer option from the CSS, or upgrade your CSS to what comes with DataTables 1.10, which does behave correctly for this: http://live.datatables.net/hojukaz/1/edit Allan
- 10th Mar 2014Create links calling JS methods in a table cell (undefined method error)Well, I'm responding my own question for the reference of whoever might encounter him-/herself in a similar situation: The "external" function should be defined outside the $(document).ready(function(){}); block, then everything will be working as expected: [code] < script> function selectClient(a){ alert(a); } $(document).ready(function(){ $("#search-user-form").submit(function(e){ ... [/code]
- 6th Mar 2014Table FormattingAs in inside the DataTable? Not built into DataTables, it will just display the data that is given to it. Whatever is outputting the data should be doing the formatting. Alternatively you could use mRender to do some formatting if needed. Allan
- 9th Feb 2014sort carets in table header appear below labelsExcellent, thanks.