Search
915 results 221-230
Forum
- 4th Oct 2012Shadowbox with server-side scriptbServerSide": true, "sAjaxSource": "auditas_ajax.php", "fnRowCallback": function( nRow, aData, iDisplayIndex,
- 21st Sep 2012How to get the current page from mRender function ?doing this ?? Using the fnRowCallback seems fine for the
- 21st Sep 2012Datatable not getting Auto-refreshed after click on header for sortingsAjaxSource": "datatableprocessor", "sPaginationType": "full_numbers", "fnRowCallback": function (nRow, aData, iDisplayIndex)
- 16th Sep 2012Strange issue with fnRender/fnRowcallbackSorted this out by removing the span on click function out of the datatables activation's fnrowcallback event, and placing it outside the activation, and moving to a live instead of on. http://jsbin.com/uwivor/5/edit
- 10th Sep 2012Highlighting a row that has an empty value in it.Sorry answered my own Question. Added [code] "fnRowCallback": function( nRow, aData, iDisplayIndex ) { if(aData[1]=="" || aData[2]=="" ||aData[3]=="" || aData[4]==""){ nRow.className = "warn"; } return nRow; } [/code]
- 1st Sep 2012Manipulate data after it is loaded via server-siden/m, figured it out with fnRowCallback
- 29th Aug 2012Slow work of coloring of rowsNew problem....new solution. It was easy :) [code] "fnRowCallback": function( nRow, aData, iDisplayIndex ) { if (aData[1]=="black") {nRow.className = nRow.className + " black"} else if (aData[1]=="yellow") {nRow.className = nRow.className + " yellow"} else if (aData[1]=="red") {nRow.className = nRow.className + " red"} else if (aData[1]=="green") {nRow.className = nRow.className + " green"} }, [/code]
- 28th Aug 2012Highlight row based on the row valuesecond parameter passed into fnRowCallback ( aData is the name
- 24th Aug 2012Data not showing in IEsAjaxSource": "get_data.php", "iDisplayLength": 25, "fnRowCallback": function( nRow, aData) { if
- 9th Aug 2012fnopen problembServerSide": true, "sAjaxSource": "siparisler_serversidesorter.php", "fnRowCallback": function( nRow, aData, iDisplayIndex,