class name assigned to dropdown element doesn't show in the source (flash builder)
class name assigned to dropdown element doesn't show in the source (flash builder)
Hello! It's code generation bug. We'll fix...
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);
});
});