I created a custom grid cell to preselect and disable some columns based on the state, but now I am unable to select any checkboxes.
Is there a way to use the custom cell to set the checkbox values and keep the selection and selection state working the same?
<td colSpan={props.colSpan} role={'gridcell'} aria-colindex={props.ariaColumnIndex}>
<input
disabled={ifAttached} // value from state
type="checkbox"
checked={ifAttached} // value from state
/>
</td>