Can a radiobuttonlist trigger a call to ItemCommand inside a RadGrid. Below, the button works, but the radiobuttonlist does not hit the event in code behind.
<
telerik:GridTemplateColumn
AllowFiltering
=
"false"
HeaderText
=
"Approvals"
UniqueName
=
"Approvals"
>
ItemStyle HorizontalAlign="Left" Width="140" />
<
HeaderStyle
HorizontalAlign
=
"Left"
Width
=
"140"
/>
<
HeaderTemplate
>
</
HeaderTemplate
>
<
ItemTemplate
>
<
asp:RadioButtonList
ID
=
"rdoApprovals"
runat
=
"server"
RepeatDirection
=
"Horizontal"
CommandName
=
"ApproveDeny"
>
<
asp:ListItem
Value
=
"1"
>Approve</
asp:ListItem
>
<
asp:ListItem
Value
=
"2"
>Deny</
asp:ListItem
>
</
asp:RadioButtonList
>
<
asp:Button
ID
=
"btnTest"
runat
=
"server"
Text
=
"test"
CommandName
=
"test"
/>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>