However, when I perform a filtered search and the search string is found in the last column, the results are not printed
This happens because the 'search_columns' variable of the nuFORM JavaScript object needs an aditional column at the end.
I solved it by adding the following code between lines 1178 and 1179 of nucommon.js file
Code: Select all
if(i > 0){cols.push(i);}
Code: Select all
if($('#nusearch_' + i).length == 0){ //-- no such column number
if(i > 0){cols.push(i);}
break;
KInd regrads,
Fike