iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Hi All,
By default web scheduler event tolltip is the "Description" of the events. But I want to customize the tooltip. A different message other than the event description. I am not able to find out a solution for that. Can anny one help on this. thanks in advance.
Thanks
Srikant
You couls use the Tooltip property in the Event and RecurringEvent to modify the displayed tooltip. One suggestions is to modify the tooltip during DataBound server side event handler. Here is the snippet, the tooltip is set to a static text:
protected void WebScheduler1_DataBound(object sender, ISNet.WebUI.WebScheduler.WebSchedulerDataBoundDataArgs e){ switch (e.Type) { case WebSchedulerObjectType.Event: WebSchedulerEventBase evt = (WebSchedulerEventBase)e.DataObject; evt.Tooltip = "Mod Event Tooltip"; break; case WebSchedulerObjectType.RecurringEvent: WebSchedulerRecurringEvent recEvt = (WebSchedulerRecurringEvent)e.DataObject; recEvt.Tooltip = "Mod Recurring Event Tooltip"; break; }}
Hi Glenn
Thanks for your replay. It is working.
This topic helped me a lot on solving my similar question with the scheduler control. The scheduler tool tip is something that I am quite unfamiliar with. I perceive that I got to know a lot from this thread.
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname