or
<
telerik:GridTemplateColumn
HeaderText
=
"Comments"
ItemStyle-HorizontalAlign
=
"Left"
HeaderStyle-Width
=
"250px"
Groupable
=
"false"
ItemStyle-VerticalAlign
=
"Top"
UniqueName
=
"CheckBoxes"
>
<
ItemTemplate
>
<
asp:CheckBox
ID
=
"CheckBox1"
Text
=
"CheckBox 1"
runat
=
"server"
/><
br
/>
<
asp:CheckBox
ID
=
"CheckBox2"
Text
=
"CheckBox 2"
runat
=
"server"
/><
br
/>
<
asp:CheckBox
ID
=
"CheckBox3"
Text
=
"ChcekBox 3"
runat
=
"server"
/><
br
/>
<
asp:CheckBox
ID
=
"CheckBox4"
Text
=
"CheckBox 4"
OnCheckedChanged
=
"DoSomething"
AutoPostBack
=
"True"
runat
=
"server"
/>
</
ItemTemplate
>
</
telerik:GridTemplateColumn
>
protected void DoSomething(object obj, EventArgs e)
{
CheckBox checkBox1 = (CheckBox)obj;
GridDataItem checkedOffer = (obj as CheckBox).NamingContainer as GridDataItem;
if ((obj as CheckBox).Checked)
{
// I need to find the other checkboxes in here when someone clicks on CheckBox 4
}
}
protected
void
chkListRoles_ItemDataBound(
object
sender, RadListBoxItemEventArgs e)
{
if
(e.Item
is
RadListBoxItem)
{
(e.Item
as
RadListBoxItem).Attributes[
"id"
] = Guid.NewGuid().ToString();
string
id = (e.Item
as
RadListBoxItem).Attributes[
"id"
];
this
.radToolTipManager1.TargetControls.Add(id, (e.Item
as
RadListBoxItem).Value.ToString(),
true
);
}
}
Thank you
Fred
<
telerik:RadMenu
ID
=
"RadMenu_LeftNav"
runat
=
"server"
CssClass
=
"RadMenu_LeftNav"
Flow
=
"Vertical"
Height
=
"650px"
Width
=
"138px"
/>
protected void Page_Load(object sender, EventArgs e)
{
RadMenu_LeftNav.LoadContentFile("~/App_Data/Menus/RadMenu_LeftNav.xml");
}
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
<
Menu
>
<
Group
>
<
Item
Text
=
"Contacts"
ImageUrl
=
"/Images/64x64/Contacts_01.png"
>
<
Group
>
<
Item
Text
=
"Create Contact"
NavigateUrl
=
"CreateContact.ascx"
/>
<
Item
Text
=
"Delete Contact"
NavigateUrl
=
"DeleteContact.ascx"
/>
<
Item
Text
=
"Manage Contacts"
NavigateUrl
=
"Manage Contacts"
/>
<
Item
Text
=
"Upgrade To Mailbox"
NavigateUrl
=
"UpgradeContact.ascx"
/>
</
Group
>
</
Item
>
...
...
</
Group
>
</
Menu
>
Thanks,
Randall Price