listcombobox.js

来自「javascript 很酷的类库」· JavaScript 代码 · 共 20 行

JS
20
字号
isc.DynamicForm.create({    width: 500,    numCols: 4,    fields : [{        name: "bugStatus", title: "Bug Status",         editorType: "comboBox",        valueMap : {            "new" : "New",            "active" : "Active",            "revisit" : "Revisit",            "fixed" : "Fixed",            "delivered" : "Delivered",            "resolved" : "Resolved",            "reopened" : "Reopened"        }    },{        name: "itemName", title: "Item Name", editorType: "comboBox",         optionDataSource: "supplyItem", pickListWidth: 250    }]});

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?