I have to disable checkbox and its associated radio buttons
Under one checkbox there are many radio buttons so i want to disable the radio button based on some flag which is coming from database
when i assign dynamic flag to its disabled property it is not working
flag value is coming as false eventhough radio button is not disabled
<form:checkbox path="lstAuthFactor" value="${authLevelFactor.key}" label="${authLevelFactor.key}" disabled="true" />
<ul class="verticalRadios">
<form:radiobuttons path="authChainCodes[${seq1.index}].levelId" items="${authLevelFactor.value}" itemValue="levelId" itemLabel="levelDesc" element="li" disabled="levelActive"/>
here levelactive is boolean value but that is not working
Anybody please suggest