widget multi select UI enhancement.

git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9001 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2011-09-02 09:30:55 +00:00
parent 2fe6b927d6
commit d17b0e6503
6 changed files with 156 additions and 153 deletions

View file

@ -423,9 +423,11 @@ $('.modulefinder')
$mod_select.prop('selectedIndex', 0).change().focus();
if(!$mod_select.is(':visible')) {
$mod_select.slideDown(100, function(){
$finder.find('.moduleIdList:not(:visible)').slideDown(100);
});
$mod_select
.slideDown(100, function(){
$finder.find('.moduleIdList:not(:visible)').slideDown(100).trigger('show');
})
.trigger('show');
}
};