or
<
telerik:RadTabStrip
runat
=
"server"
ID
=
"rtsDetails"
Skin
=
"Default"
Orientation
=
"HorizontalTop"
SelectedIndex
=
"0"
MultiPageID
=
"rmpDetails"
CausesValidation
=
"false"
Width
=
"100%"
OnClientTabSelected
=
"OnClientTabSelected"
>
<
Tabs
>
<
telerik:RadTab
Text
=
"My Details"
Value
=
"0"
>
</
telerik:RadTab
>
<
telerik:RadTab
Text
=
"IT Assets"
Value
=
"1"
>
</
telerik:RadTab
>
<
telerik:RadTab
Text
=
"Action Requests"
Value
=
"2"
IsBreak
=
"true"
>
</
telerik:RadTab
>
<
telerik:RadTab
Text
=
"Correspondence"
Value
=
"3"
>
</
telerik:RadTab
>
<
telerik:RadTab
Text
=
"Purchase Orders"
Value
=
"4"
>
</
telerik:RadTab
>
<
telerik:RadTab
Text
=
"Support Calls"
Value
=
"5"
>
</
telerik:RadTab
>
</
Tabs
>
</
telerik:RadTabStrip
>
Below I have an image of my running page.
I have my Update button in Edit.ascx
<
td
align
=
"right"
>
<
asp:Button
ID
=
"btnUpdate"
Text
=
"Update"
runat
=
"server"
CommandName
=
"Update"
Visible='<%# Not (TypeOf DataItem Is Telerik.Web.UI.GridInsertionObject) %>'>
</
asp:Button
>
<
asp:button
id
=
"btnCancel"
text
=
"Cancel"
runat
=
"server"
causesvalidation
=
"False"
commandname
=
"Cancel"
></
asp:button
>
</
td
>
And I have my server side code: in exit.ascx.vb
Protected Sub btnUpdate_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnUpdate.Click
'Set Varibles
.
.
.
End Sub
Telerick grid in view.ascx
.
.
.
<
telerik:GridEditCommandColumn
UniqueName
=
"EditCommandColumn"
>
</
telerik:GridEditCommandColumn
>
</
Columns
>
<
EditFormSettings
UserControlName
=
"desktopModules/AAUMembershipHist01/Edit.ascx"
EditFormType
=
"WebUserControl"
>
<
EditColumn
UniqueName
=
"EditCommandColumn1"
>
</
EditColumn
>
</
EditFormSettings
>
.
.
.
Running my trace I find that the Server side code never gets executed.
Doing something wrong. Can someone point my in the right direction?