This question is locked. New answers and comments are not allowed.
Hi,
I have a radio button list inside my grid bound to boolean properties, however when in edit mode, the radio buttons turn into checkboxes.
I would imagine I can keep the radio button functionality by defining my own editor template, but I was wondering if there was a different way of achieving this?
Thanks,
I have a radio button list inside my grid bound to boolean properties, however when in edit mode, the radio buttons turn into checkboxes.
I would imagine I can keep the radio button functionality by defining my own editor template, but I was wondering if there was a different way of achieving this?
columns.Bound(r => r.Property1).ClientTemplate("<input name='<#= ID #>' type='radio' disabled='disabled' checked='checked' /></text>"); columns.Bound(r => r.Property2).ClientTemplate("<input name='<#= ID #>' type='radio' disabled='disabled' <#= Property2 ? checked='checked' : '' #> /></text>");Thanks,