Hello Again,
I did following workaround
:
function jqxComboBox_select(id) { $('#dropdownlistContent' + id).parent().find('[type="textarea"]').select();}function jqxComboBox_font_size(id, size) { $('#dropdownlistContent' + id).parent().find('[type="textarea"]').css('font-size', size + 'px');}function jqxComboBox_font_family(id, font) { $('#dropdownlistContent' + id).parent().find('[type="textarea"]').css('font-family', font);}
We can call the like:
jqxComboBox_select('mycomboid'); // select all textjqxComboBox_font_size('mycomboid', 26); // font-size: 26px;jqxComboBox_font_size('mycomboid', 'Lucida Sans Unicode'); //font-family: "Lucida Sans Unicode";
Best Regards,
Mohammed.