在select2代码下使用它,只有在我们有更多记录的情况下,才在chrome中运行缓慢。
if ('${attribute.displayComponentType}' == 'searchableSelect') {
$('#${attributeSelector}').select2({
minimumInputLength:2,
allowClear : true,
placeholder : ""
});
$(".select2-container").width('98%');
$('#${attributeSelector}_clear').bind('click', function(e){
'#${attributeSelector}').select2('val', '');
});
}