我对Select2有疑问。一切正常,除非我无法选择任何选项。我正在使用select2 3.5.3,KnockoutJS,CoffeeScript和JQuery。我的select2代码:
generateSelect3 =->
return '<input data-bind="select2: {
data:{ results: _.available, text: \'text\'},
minimumInputLength: 3,
allowClear: true,
}" class="select2"></select>'
所有文件都被调用。我有工作定制的select2。它是初始化代码:
generateSelect2 =->
return $('<div class="subcontainer"><input type="text" class="input-
xxlarge" data-bind="select2ex: {url: (_.params && _.params.url ||
undefined), value: value, text: text, options: _.params}"></div>');
答案 0 :(得分:0)
转到this link。您只需要链接2个文件。头上的Css和页脚的Js。
在select2.js之后调用您的个人js文件,并且您必须在jQuery.js
之前调用select2.js
。
在文件上使用以下代码。
$(document).ready(function () {
$(".category").select2({
placeholder: 'Category',
tags: true,
width: 'resolve'
});
$(".sub-category").select2({
placeholder: 'Sub Category',
tags: true,
width: 'resolve'
});
});
答案 1 :(得分:0)
问题已解决:
return $('<div class="subcontainer"><select
class="input-xxlarge"
data-bind="options: _.available,
optionsText: $.ehr.CodedWidget.formatSelectText,
optionsValue: function(item) {
return item && item.value || (item.value == 0 ? item.value + \'\' : \'\') },
select2ex: {
value: value,
}"></select></div>')