or
{
background-image: url('TreeView/greyarrow.png') !important;
height: 10px !important;
width: 12px !important;
background-position:0 0 !important;
}
.RadTreeView_ConcordeLicenceList .rtPlus:hover
{
background-image: url('../images/treeview/greyarrow.png') !important;
height: 10px !important;
width: 12px !important;
background-position:0 0 !important;
}
.RadTreeView_ConcordeLicenceList .rtMinus
{
background-image: url('TreeView/bluearrow.png') !important;
height: 10px !important;
width: 12px !important;
background-position:0 0 !important;
}
.RadTreeView_ConcordeLicenceList .rtMinus:hover
{
background-image: url('TreeView/bluearrow.png') !important;
height: 10px !important;
width: 12px !important;
background-position:0 0 !important;
}
<
telerik:GridTemplateColumn
DataField
=
"Category"
HeaderText
=
"CatID"
SortExpression
=
"Category"
UniqueName
=
"Category"
>
<
EditItemTemplate
>
<
telerik:RadComboBox
ID
=
"RadComboBox1"
Runat
=
"server"
>
</
telerik:RadComboBox
>
</
EditItemTemplate
>
<
ItemTemplate
>
<
asp:Label
ID
=
"CategoryLabel"
runat
=
"server"
Text='<%# Eval("Category") %>'></
asp:Label
>
</
ItemTemplate
>
<
HeaderStyle
Width
=
"150px"
/>
</
telerik:GridTemplateColumn
>
Protected Sub RadGrid1_ItemCreated(ByVal sender As Object, ByVal e As GridItemEventArgs)
If (TypeOf e.Item Is GridEditableItem) AndAlso (e.Item.IsInEditMode) Then
Dim edititem As GridEditableItem = DirectCast(e.Item, GridEditableItem)
Dim RCB1 As RadComboBox = DirectCast(edititem("Category").Controls(0), RadComboBox)
Dim item1 As New RadComboBoxItem()
item1.Text = "BibleStudy"
item1.Value = "Bible Study"
RCB1.Items.Add(item1)
End If
End Sub
manager.AjaxSettings.AddAjaxSetting(btnSendEmail, btnSendEmail);
<
P
><
script
language
=
"javascript"
type
=
"text/javascript"
><
BR
>
function mainTabSelected(sender, args) {<
BR
> var tab =
eventArgs.get_tab();<
BR
> tab.click();<
BR
>
}<
BR
></
script
></
P
>
<
P
><
telerik:RadTabStrip
ID
=
"RadTabStrip1"
runat
=
"server"
SelectedIndex
=
"0"
AutoPostBack
=
"true"
CausesValidation
=
"false"
ClickSelectedTab
=
"true"
OnClientTabSelected
=
"mainTabSelected"
><
BR
>
<
Tabs
><
BR
> <
telerik:RadTab
ID
=
"TabCampaignSetup"
Value
=
"CampaignEdit"
Text="<u>C</
u
>ampaign Setup" runat="server"
AccessKey="C" SelectedIndex="0" /><
BR
>
<
telerik:RadTab
ID
=
"TabMassSubscription"
Value
=
"CampaignMassSubscriptions"
Text="<u>A</
u
>dd Subscriptions" runat="server" AccessKey="A"
SelectedIndex="1" /><
BR
> <
telerik:RadTab
ID
=
"TabRemoveSubscriptions"
Value
=
"CampaignRemoveSubscriptions"
Text="<u>S</
u
>ubscriptions" runat="server" AccessKey="S"
SelectedIndex="2" /><
BR
> <
telerik:RadTab
ID
=
"TabContactHistory"
Value
=
"CampaignContactHistory"
Text="C<u>o</
u
>ntacts" runat="server" AccessKey="O"
SelectedIndex="4" /><
BR
> <
telerik:RadTab
ID
=
"TabCampaignHistory"
Value
=
"CampaignHistory"
Text="<u>H</
u
>istory" runat="server" AccessKey="H" SelectedIndex="3"
/><
BR
> </
Tabs
><
BR
></
telerik:RadTabStrip
><
BR
></
P
>