diff --git a/media/js/jquery.dataTables.js b/media/js/jquery.dataTables.js index e27ebdf3..9e079eaf 100644 --- a/media/js/jquery.dataTables.js +++ b/media/js/jquery.dataTables.js @@ -460,6 +460,10 @@ { _fnSetCellData( oSettings, iRow, i, _fnRender(oSettings, iRow, i) ); } + else + { + _fnSetCellData( oSettings, iRow, i, _fnGetCellData( oSettings, iRow, i ) ); + } /* See if we should auto-detect the column type */ if ( oCol._bAutoType && oCol.sType != 'string' ) diff --git a/media/src/core/core.data.js b/media/src/core/core.data.js index 4b43ebf6..dd35bcff 100644 --- a/media/src/core/core.data.js +++ b/media/src/core/core.data.js @@ -35,6 +35,10 @@ function _fnAddData ( oSettings, aDataSupplied ) { _fnSetCellData( oSettings, iRow, i, _fnRender(oSettings, iRow, i) ); } + else + { + _fnSetCellData( oSettings, iRow, i, _fnGetCellData( oSettings, iRow, i ) ); + } /* See if we should auto-detect the column type */ if ( oCol._bAutoType && oCol.sType != 'string' )