I'm developing a web appication using ASP.NET and VB.NET.
In my application im using ajax control tool kit.
this is what happned to me...
I load data to my AJAX combo box. But when it dropped down, there is a gap between combo box and dropped down list. I search through internet about this. But I couldn't find a proper solution. These are solutions according to forms.
1. It was mensioned a DIV tag issue and then I reomved it. DOESN'T WORK.
2. This link http://jinath.wordpress.com/2013/01/22/ajax-combobox-result-list-position-problem/ also not worked.
above link code is
<style>
.WindowsStyle .ajax__combobox_itemlist
{position:inherit !important; }
</style>
instead of inherit I added "static". It worked. (Position is ok) But after clicking arrow of the combo box below controllers pushed down and it takes a space for drop down list.
If I added asp dropdownlist instead of Ajax combo box, it worked well. (It means dropdown list appear in right position) But in my case it must add a Ajax combo box.
Please show me some direction for solving my problem.