Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion js/core/core.draw.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,13 @@ function _fnCreateTr ( oSettings, iRow, nTrIn, anTds )
cells.push( nTd );

// Need to create the HTML if new, or if a rendering function is defined
// and it's return value is non null
if ( (!nTrIn || oCol.mRender || oCol.mData !== i) &&
(!$.isPlainObject(oCol.mData) || oCol.mData._ !== i+'.display')
) {
nTd.innerHTML = _fnGetCellData( oSettings, iRow, i, 'display' );
var cellData = _fnGetCellData( oSettings, iRow, i, 'display' );
if ( cellData !== null )
nTd.innerHTML = cellData;
}

/* Add user defined class */
Expand Down