可编辑的Webix数据表列标题

时间:2016-09-30 23:06:49

标签: javascript html webix

是否可以在webix数据表中创建可编辑的列标题?此代码将允许编辑表中的数据,但不允许编辑标题本身:

 webix.ui({
    view:"datatable",
    editable:true,
    columns:[
       { id:"title",   header:"Test", fillspace:true, editor:"text"}],
    data:[
        {title:"random"}
    ]
});

1 个答案:

答案 0 :(得分:1)

没有内置解决方案,但添加外部编辑器非常容易

http://webix.com/snippet/379ee39b

您可以使用

中的文本编辑器创建单独的弹出窗口
webix.ui({ id:"editor", view:"popup", body:{
  view:"form",
  elements:[
    { view:"text", name:"header" },
    { view:"button", value:"Save", click:function(){
      var top = this.getTopParentView();
      top.config.callback( top.getBody().getValues().header);
      top.hide();
    }}
  ]
}});

之后,从标题点击事件

中使用它
  onHeaderClick:function(id, ev){
    var grid = this;

    $$("editor").getBody().setValues({
        header: this.getColumnConfig(id.column).header[0].text
    });
    $$("editor").config.callback = function(value){
      grid.getColumnConfig(id.column).header[0].text = value;
      grid.refreshColumns();
    };
    $$("editor").show(ev);
    $$("editor").getBody().focus();
  }