Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
<
telerik:RadScheduler
ID
=
"RadScheduler1"
runat
"server"
OnClientAppointmentContextMenu
"OnClientAppointmentContextMenu"
........>
</
>
telerik:RadToolTip
"RadToolTip1"
Position
"BottomCenter"
div
id
"contentContainer"
telerik:RadGrid
"RadGrid1"
AutoGenerateColumns
"true"
DataSourceID
"SqlDataSource1"
<script type=
"text/javascript"
function
OnClientAppointmentContextMenu(sender, args) {
var
apt = args.get_appointment();
showTooltip(apt);
}
showTooltip(apt) {
tooltip = $find(
'<%=RadToolTip1.ClientID %>'
);
tooltip.set_targetControl(apt.get_element());
debugger;
tooltip.set_text($get(
).innerHTML);
setTimeout(
() {
tooltip.show();
}, 20);
</script>