Filterd results not printing if search string is in last col
Posted: Wed Apr 09, 2014 1:48 am
When I do not perform a filtered search in the browse screen and I print the results everythingworks fine
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
Therefore lines 1178 to 1180 now become
If there is another solution please let me know.
KInd regrads,
Fike
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