I'm using the jQuery dropdown checklist plug-in. When the it gets wired up to a multi-select box, you can see the multi-select render for an instant then the correct looking dropdown shows up. It's noticeable on page load but it's especially ugly on partial postbacks when it flashes the larger multi-select for an instant.
I was thinking I could hide it by adding a beginRequest call to hide and a show on end request but it doesn't work. Is there a way to check when the checklist is finished wiring up such that I can displayed it at that point? I'm having a hard time even hiding the dropdown checklist at all programmatically via javascript.
Any ideas?
Update
So, apparently, this is an IE6 only issue. Problem is, IE6 is the only browser this app is going to run in. The ugliness occurs on page load in even the simplest instance of creating a dropdown checklist. i.e.
$(function() {
$('#MySelect').dropdownchecklist();
});