Eric5020946
Posts: 0
Joined: Tue Sep 18, 2012 4:31 pm

dropdown classname missing

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

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

dropdown classname missing

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

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

dropdown classname missing

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);
});
});

Return to “Issues”