In a normal section item (which can be collapsed), if a user hovers over the section header, a hand pointer is shown to indicate that it can be collapsed. I expect this behaviour to go away if canCollapse is set to false - as is the behaviour for SectionStack headers. How do I prevent this from happening in section item non collapsible headers?
Code:
isc.DynamicForm.create({ width: 300, fields: [ { defaultValue:"Stock", type:"section", sectionExpanded:false,canCollapse: false, itemIds: ["inStock", "nextShipment"] }, { name:"inStock", type:"checkbox", title:"In Stock" }, { name:"nextShipment", type:"date", title:"Next Shipment", useTextField:true} ] });
Comment