1

例如: LongTextEditor 具有固定的宽度和高度:

$input = $("<TEXTAREA hidefocus rows=5 style='backround:white;width:250px;height:80px;border:0;outline:0'>")
      .appendTo($wrapper);

将其参数化会很好,如下所示:

$input = $("<TEXTAREA hidefocus rows=5 style='backround:white;width:"+options.width+";height:"+options.height+";border:0;outline:0'>")
      .appendTo($wrapper);
4

1 回答 1

3

是的,您可以按如下方式实现。

将选项列表传递给列数组

var columns = [
        { id: "Id", name: "NAME", field: "FIELD", options: YourList, editor: Slick.Editors.YourEditor,},
              ];

然后你可以在你的编辑器中访问它(编辑器的默认文件Slick.editors.js

 function YourEditor(args) {
     //Access columns list using "args.column.options"
 }
于 2013-08-27T15:44:28.920 回答