hello
I have a datatables and filters to go well ... but another option to generate another datatable (this does not use the filter) I get the error "uncaught typeerror: cannot read property 'value' of null when open other datatable"
please help me
I have been several days this problem
I have a datatables and filters to go well ... but another option to generate another datatable (this does not use the filter) I get the error "uncaught typeerror: cannot read property 'value' of null when open other datatable"
please help me
I have been several days this problem
$.fn.dataTableExt.afnFiltering.push( function( oSettings, aData, iDataIndex ) { var iMin = document.getElementById("min").value*1;//THE ERROR IN CHROME var iMax = document.getElementById("max").value*1; var iVersion = aData[3] == "-" ? 0 : aData[3]*1; if ( iMin == "" && iMax == "" ) { return true; } else if ( iMin == "" && iVersion <= iMax ) { return true; } else if ( iMin <= iVersion && "" == iMax ) { return true; } else if ( iMin <= iVersion && iVersion <= iMax ) { return true; } return false; } );