We have a request to specify the cell height that is being occupied by the slider element. It is always set to 100px no matter what is set on the item itself. Is there a way around this? If not, we would like an estimate on supporting this feature.
Code:
isc.DynamicForm.create({ fields: [ { name: "rating", title: "Rating", editorType: "slider",showTitle:false,height:50, minValue: 1, maxValue: 5, numValues: 5, titleOrientation: "top"} ], values: { rating: 4 } });
Comment