Is there any way to disable only the checbox without disabling the label in ojet.
I wrote this code
<oj-checkboxset id="checkboxSetId" labelled-by="mainlabelid"
disabled={{readOnly}}
value="{{encryptionTypesGlobalSetting}}">
<oj-option id="g_encrypKeyRotation" value="encryption-key-rotation">Enable
Encryption Key
Rotation
</oj-option>
<oj-option id="g_extendedPocketEncryp" value="encryption-header">Enable Extended
pocket
Encryption Header
</oj-option>
<oj-option id="g_extendedPocketAuth" value="extended-authentication-trailer">
Enable Extended Pocket
Authentication Trailer
</oj-option>
</oj-checkboxset>
But it disables the whole label, I only want to disable the checkbox. Is there any way to do ??
Thanks,