I am using a RadListView control with an ItemTemplate that contains a button as shown here:
<ItemTemplate>
<tr class="rlvI">
//more TD elements here
<td>
<telerik:RadButton ID="ENABLEDToggle" runat="server" Width="75" ButtonType="StandardButton" AutoPostBack="true"
ToggleType="CustomToggle" Checked='<%# Enabled_Converter(Eval("ENABLED")) %>' OnCheckedChanged="TaskStateChange_Clicked">
<ToggleStates>
<telerik:RadButtonToggleState Text="Enabled" />
<telerik:RadButtonToggleState Text="Disabled" />
</ToggleStates>
</telerik:RadButton>
</td>
</tr>
</ItemTemplate>
My first question is why is it that when my button is pressed, I do not enter my TaskStateChange_Clicked event handler? It is as if the event is never fired.
Second, whenever a button is clicked, how do I get the object associated with that row?
As for the first question, check how you are binding your
RadListView
. Problems like this usually appear if controls are bound with data on every postback. So if you have something likereplace it with
Update from comments. Another reason might be that the type of your button is
StandardButton
while spec implies that eventCheckedChanged
is fired only when button type isToggleButton
.As for the second question consider using RadListView's
ItemCommand
event. This way you can make use ofCommandArgument
property ofRadButton
and pass any info you want in it, say object's ID.