Hello,
I am using the radgrid with a web user control for the modal popup. I switched the save buttons from regular asp.net buttons to the radbuttons and now my break points won't get hit and I believe the method isn't even being hit when the save button is pressed. My markup is below. The methods do have the handles statement. Is there something I am missing?
Thank you for your help.
P.S. I should also add that other break points work. The ItemCommand method breaks properly and all the others do too.
Ben
I am using the radgrid with a web user control for the modal popup. I switched the save buttons from regular asp.net buttons to the radbuttons and now my break points won't get hit and I believe the method isn't even being hit when the save button is pressed. My markup is below. The methods do have the handles statement. Is there something I am missing?
<
telerik:RadButton
ID
=
"updateButton"
runat
=
"server"
Text
=
"Save"
Width
=
"75px"
CommandName
=
"Update"
Visible='<%# Not (TypeOf DataItem Is Telerik.Web.UI.GridInsertionObject) %>'
Skin="Outlook" CausesValidation="false">
</
telerik:RadButton
>
<
telerik:RadButton
ID
=
"insertButton"
runat
=
"server"
Text
=
"Save"
Width
=
"75px"
CommandName
=
"PerformInsert"
Visible='<%# (TypeOf DataItem Is Telerik.Web.UI.GridInsertionObject) %>' Skin="Outlook"
CausesValidation="false">
</
telerik:RadButton
>
Thank you for your help.
P.S. I should also add that other break points work. The ItemCommand method breaks properly and all the others do too.
Ben