我们在 slickgrid 列中定义了一个列表框。我们有一个问题,要从列表框中选择一个选项,我们首先必须选择单元格,然后才能从列表框中选择选项。因此,用户需要两次点击而不是一次。我们需要做什么才能让用户一键打开列表框来选择所需的值。
我们使用以下单元格格式化程序和编辑器来显示列表框:
格式化程序:
function SelectCellFormatter(row, cell, value, columnDef, dataContext) {
opt_values = columnDef.options.split(',');
option_str = "";
for( i in opt_values ){
v = opt_values[i];
if(v == value)
{
option_str += "<OPTION value='"+v+"' selected>"+v+"</OPTION>";
}
else
{
option_str += "<OPTION value='"+v+"'>"+v+"</OPTION>";
}
}
return "<SELECT tabIndex='0' class='editor-select'>"+ option_str +"</SELECT>"
}
编辑:
SelectCellEditor : function(args) {
var $select;
var defaultValue;
var scope = this;
this.init = function() {
if(args.column.options){
opt_values = args.column.options.split(',')
} else {
opt_values ="yes,no".split(',');
}
option_str = ""
for( i in opt_values ){
v = opt_values[i];
option_str += "<OPTION value='"+v+"'>"+v+"</OPTION>";
}
$select = $("<SELECT tabIndex='0' class='editor-select'>"+ option_str +"</SELECT>");
$select.appendTo(args.container);
$select.focus();
};
this.destroy = function() {
$select.remove();
};
this.focus = function() {
$select.focus();
};
this.loadValue = function(item) {
defaultValue = item[args.column.field];
$select.val(defaultValue);
};
this.serializeValue = function() {
if(args.column.options){
return $select.val();
} else {
return ($select.val() == "yes");
}
};
this.applyValue = function(item,state) {
item[args.column.field] = state;
};
this.isValueChanged = function() {
return ($select.val() != defaultValue);
};
this.validate = function() {
return {
valid: true,
msg: null
};
};
this.init();
}