Page 1 of 1

dropdown classname missing

Posted: Sat Nov 17, 2012 12:01 am
by Eric5020946

class name assigned to dropdown element doesn't show in the source (flash builder)


dropdown classname missing

Posted: Mon Nov 19, 2012 1:41 pm
by Maryna Brodina

Hello! It's code generation bug. We'll fix...


dropdown classname missing

Posted: Wed Nov 21, 2012 9:06 am
by Maryna Brodina

Hello! This bug will be fixed soon. As a workaround you can create JS asset with the next code

$(document).bind('pageinit', function() {
$('.ui-select select').each(function() {
var customClass = this.getAttribute('class');
var button = $(this).prev();
button.addClass(customClass);
});
});