|
发表于 2017-11-14 10:24:29
|
显示全部楼层
获取到数据后,可以获取字段的值,然后js中字符串分隔遍历,data调用newData把遍历的数据新增到data中
动态创建的select关联这个data
动态创建参考
引用var select = require("$UI/system/components/justep/select/select");
- Model.prototype.button14Click = function(event) {
- var parentNode = this.getElementByXid("content2");
- var options = {
- parentNode : parentNode,
- xid : 'select1',
- class : "form-control x-edit",
- 'bind-ref' : "data2.ref('fName')",
- 'bind-options' : "data1.datas",
- 'bind-optionsLabel' : "fName",
- 'bind-optionsValue' : "fValue"
- };
- new select(options);
- };
复制代码 |
|