Click here to Skip to main content
15,887,836 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends
I am using AutoCompleter with Jquery and web services in my asp.net project and binding databse values on gridview.
TextBox is in GridViews Header. GridView is inside the panel and panel is Scrollable and Panel is inside the Table .
When Page Load and no record is in gridview then autoCompleter shows 15 records
but when row are inserted in grid then next time then Scrollbar appears in panel and AutoCompleter and gridview shows inside the panel and autoCompleter shows only five records and 10 rows are getting hide in Panel.
I am not succeeded to recover the problem.Please help.

Thanks in Advance
Akhilesh Pathak
Posted
Updated 21-Apr-13 21:19pm
v3
Comments
Yuvaraj Arasu 19-Apr-13 6:55am    
Please show us the screen shot. Just to decide , Whether this can be solved by altering CSS z-index property value of your AutoCompleter;

1 solution

You can do this on your css, you just need to add "!important" to override the value the library sets:
CSS
ul.ui-autocomplete {
    z-index: 100 !important;
}




--Amit
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900