dropdown classname missing
Posted: Sat Nov 17, 2012 12:01 am
class name assigned to dropdown element doesn't show in the source (flash builder)
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
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);
});
});