Skip to Main Content

Interactive Report Custom Search

Employee Info

ORA-00942: table or view does not exist

Documentation

Documentation: Click Here for Documentation

Other Video Tutorial: Click Here for Video Tutorial

Facebook: Like Facebook Page

Do not forget to Subscribe

Code

$('.a-IRR-search-field').keyup(function() {

v_search = $('.a-IRR-search-field').val();
v_search = v_search.toLowerCase();

$(".CustomSearch td").each(function() {

cellData = $(this).text();
cellData = cellData.toLowerCase();
cellData = cellData.search(v_search);
if ((cellData != '-1' || cellData == 0) && v_search != '') {
$(this).closest('td').addClass('u-success');

} else if (cellData == '-1') {
$(this).closest('td').removeClass('u-success');
} else
$(this).closest('td').removeClass('u-success');

});
});