Is there a way to force the radio button to wrap the value maps to two lines if it does not fit the column?
Code:
isc.DynamicForm.create({ width: 500, numCols: 4, fields : [{ name: "bugStatus", title: "Bug Status", editorType: "radioGroup",vertical:false, 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 }] });
Comment