I want a custom grid, which contains a radio at the beginning of the column. Only one of the row in the grid can be selected ( that too by selecting the radio ).
I used the following approach to achieve the above said,
renderer:functiom(val){
return Ext.String.format("<input type='radio' name='rowSel' value={0} />",val);
}
Unlike Extjs radio, this is a html radio, which lacks richness, similarly i can't show validation error messages.
Is there a possibility to achieve the above using extjs radio ?