Code:
isc.DynamicForm.create(
{
fields: [{
type: "slider",
minValue: 1,
maxValue: 5,
numValues: 5,
title: "Rating",
showValue: false,
}],
})
Would there be any other way besides creating SliderItem's by myself through isc.SliderItem.create() to prevent the class method 'showValue' to be overwritten by this boolean?
Comment