<
telerik:RadGrid
ID
=
"answers_grid"
runat
=
"server"
ShowHeader
=
"False"
Skin
=
"Web20"
GridLines
=
"None"
>
<
MasterTableView
AutoGenerateColumns
=
"False"
GridLines
=
"None"
>
<
telerik:RadComboBox
ID
=
"rcbBlah"
runat
=
"server"
CheckBoxes
=
"true"
Width
=
"600px"
OnClientItemChecked
=
"OnClientItemChecked"
ChangeTextOnKeyBoardNavigation
=
"false"
>
<
Items
>
<
telerik:RadComboBoxItem
Text
=
"All"
Value
=
"-2"
/>
<
telerik:RadComboBoxItem
Text
=
"Not Specified"
Value
=
"-1"
Checked
=
"true"
/>
<
telerik:RadComboBoxItem
Text
=
"Apple"
Value
=
"1"
/>
<
telerik:RadComboBoxItem
Text
=
"Carrot"
Value
=
"2"
/>
<
telerik:RadComboBoxItem
Text
=
"Peach"
Value
=
"3"
/>
<
telerik:RadComboBoxItem
Text
=
"Pear"
Value
=
"4"
/>
<
telerik:RadComboBoxItem
Text
=
"Tomato"
Value
=
"5"
/>
<
telerik:RadComboBoxItem
Text
=
"Zucchini"
Value
=
"6"
/>
</
Items
>
</
telerik:RadComboBox
>
function
OnClientItemChecked(radComboBox, eventArgs) {
radComboBox.set_text(
'custom text for testing'
);
}
Hi guys,
This might sound like a silly question, but I'd like have an area inside the Notification window
that is only going to use a specific area as it will align with a background image. The background
image will be like a notepad and all the content and control will appear inside it, if that makes any
sense... Cheers!!
<
telerik:RadNotification runat="server" ID="radNotificationPopup" VisibleOnPageLoad="true"
Width="340px" Height="420px" EnableRoundedCorners="true" BackColor="#FFFFFF" ForeColor="#FFFFFF" Skin="Windows7"
OnCallbackUpdate="radNotificationPopup_CallbackUpdate" LoadContentOn="PageLoad" BorderWidth="0px" VisibleTitlebar="true"
Position="Center" Animation="Fade" EnableShadow="false" Title="don't forget to..." ShowTitleMenu="false"
OffsetX="0" AutoCloseDelay="0" ContentIcon="">
<
NotificationMenu ID="TitleMenu"></NotificationMenu>
<ContentTemplate>
<div style="margin: 0px 0px 0px 0px; border: 0px 0px 0px 0px; background-color: #FFFFFF;">
<asp:HyperLink ID="lnkToDo" NavigateUrl="Events.aspx" runat="server" Text="don't forget to...">
<div class="userImg">
<img id="img" src="../Images/todolist.png" alt="don't forget to..." />
</div>
</asp:HyperLink>
</div>
</ContentTemplate>
</telerik:RadNotification>
var
dtp=$find(
'<%=dtp%>'
);
dtp.OnDateSelected =
this
.dtpFrom_DateSelected;