Hi,
What would be typical reason why a smart form control would appear disabled, without explicitly making it read only
onMounted(() => {
const template = [
{
controlType: “group”,
label: “OLED”,
labelPosition: “top”,
dataField: “oled”,
controls: [
{
controlType: “template”,
template: `<div class=”repeat-buttons-container”>OLED Orientation</div>
<smart-repeat-button>
<i class=”fa fa-repeat” aria-hidden=”true”></i>
</smart-repeat-button>
<smart-repeat-button>
<i class=”fa fa-undo” aria-hidden=”true”></i>
</smart-repeat-button>`
}
]
},
…
Thanks.