riklomas / quicksearch

A jQuery plugin for searching through tables, lists, etc quickly
http://www.lomalogue.com/jquery/quicksearch/
680 stars 261 forks source link

not working in IE #11

Closed vimal28 closed 13 years ago

vimal28 commented 13 years ago

Hello, i've implemented the search, all going good in firebox but is not working on internet explorer 7.0

riklomas commented 13 years ago

Do you have an example page or sample code I can see?

vimal28 commented 13 years ago

<?php include('include.php'); include('config.php'); require_once ('pagination.php'); session_start();

?>

Courses '; echo '
'; ?>
Course Name Course Type Course Description Course Duration STEP ID "; while($row = mysql_fetch_array($query)) { echo ""; echo ""; echo "" . $row['course_name'] . ""; echo "" . $row['course_type'] . ""; echo "" . $row['description'] . ""; echo "" . $row['duration'] . ""; echo "" . $row['step_id'] . ""; echo ""; echo ""; } echo ""; ?>
riklomas commented 13 years ago

Remove the comma at the end of:

'stripeRows': ['odd', 'even'],

And it should work

Rik

vimal28 commented 13 years ago

thx dr, its really working... thx a lot

riklomas commented 13 years ago

Excellent, any object with a trailing comma will not work in IE6 and 7, so just watch out for them :)

Rik

vimal28 commented 13 years ago

hello again... i'm not too good in web development.. actually the odd even coloring.. how i can implement it without the use of filtering.. And i need to do a conditional formatting if ever its a negative number.. can u plz tell me how to do it

vimal28 commented 13 years ago

Hello once again.. Actually while filtering, i can see the table going up, and hiding all my fields which are above the textbox for filtering... Why is that dr??

vimal28 commented 13 years ago

ok no prb, i've got it... had to put the id on script. $('input#id_search').quicksearch('table#table_example tbody tr', {

slip that.. thx man........