我必须制作一个图表编辑器,所以我使用的是 AlloYUI,我在这个问题的答案之后添加了一个自定义节点的答案之后添加了一个自定义节点。
我已成功设置新节点并通过 diagramBuilder.toJSON() 检索它的值
我要做的是更改自定义节点的自定义属性的默认编辑器小部件,我想更改日期选择器小部件的文本框,但我的目标是能够使用任何其他表单元素,例如选择,或一组单选按钮。
玩弄 WebStorm 中包含的 javascript 调试器,我发现默认字段有一个“编辑器”属性,其中定义了一个“textAreaCellEditor”。
但是我的自定义属性没有这个属性,所以我试图附加一个编辑器,但我无法让它工作,我试过这个:
Y.DiagramNodeCustom = Y.Component.create({
NAME: 'diagram-node',
ATTRS: {
type: {
value: 'custom'
},
custom_attr: {
value: 'customAttr'
}
},
EXTENDS: Y.DiagramNodeTask,
prototype: {
getPropertyModel: function () {
var instance = this;
var model = Y.DiagramNodeTask.superclass.getPropertyModel.apply(
instance, arguments);
model.push({
attributeName: 'customAttr',
name: 'Custom Attribute',
editor: Y.Component.create({
NAME: "DateField",
EXTENDS: Y.DateCellEditor
})
});
return model;
},
SERIALIZABLE_ATTRS: ['description', 'name', 'required', 'type',
'width', 'height', 'zIndex', 'xy', 'customAttr']
}
});
Y.DiagramBuilder.types['custom'] = Y.DiagramNodeCustom;
我还尝试将“model.push”部分更改为:
model.push({
attributeName: 'customAttr',
name: 'Custom Attribute',
editor: {name: "textCellEditor"}
});
并:
model.push({
attributeName: 'customAttr',
name: 'Custom Attribute',
editor: Y.DateCellEditor({
name: 'DateCellEditor'
})
});
但没有任何效果。您知道如何更改默认编辑器吗?