Tag Archives: WebScheduler

Customize Agenda View in WebScheduler

There are dozens of new enhancements that we’ve made in WebScheduler 2.0 SP1. In this post, I’m going to share a few of the newly added features related to the agenda view in WebScheduler. These new features enable you to customize the navigation and detail information [...]

Read More

Customize date header in WebScheduler Timeli...

In addition to dozens of new products introduced in 2009, we also improved existing flagship products such as WebScheduler with top-received feedback to support broader range of scenarios. In this post, I’d like to share a nice newly added feature in WebScheduler. This new feature [...]

Read More

Implement Drag and Drop to WebScheduler usin...

In WebScheduler, events can be dragged and dropped from one cell to another cell in scheduler area. Related to this functionality, we have received requests to support drag and drop behavior from another control to WebScheduler where a new event will be created upon the [...]

Read More

Copy and Paste WebScheduler’s Event in...

In scheduling scenarios, it’s quite common if user wants to copy and paste an event to a certain date. We don’t have this feature as a built-in feature yet (maybe soon ^^) in WebScheduler.NET, but you can manually implement it using our extensible API. First [...]

Read More

How-To: Create an event via Button Click In ...

Hi all, WebScheduler provides comprehensive APIs that allows you to perform functions programmatically. Often times, developers need the ability to create new events programmatically — such as from their own user interface or business logic. In this post, I’ll show you how you can create [...]

Read More

WebScheduler.NET: Prevent edit and delete ac...

In certain scenarios, you might want to prevent edit or delete action in an event only without modifying edit and delete action in other events globally. In this case, you can utilize specific properties provided in the events object to disable edit, delete, resize, and moving event. [...]

Read More

Customize Details in Agenda view

Agenda view is different compared to the other views. The events are listed in detail of formatted text layout. However, until previous build of  WebScheduler, the event details are limited to Location and Description only. Now, you can add other fields or even your own [...]

Read More

Bind WebScheduler to WebService

ISDataSource is used to bind data to WebScheduler. It would be easier if the DataSet or custom object is available at design-time, because you can configure ISDataSource using ISDataSource.NET Designer. However, when you use WebService to retrieve the data, the schema is retrieved at runtime. [...]

Read More

Switch WebScheduler’s view to SplitVie...

Today I want to share tips on how to switch WebSheduler’s view to SplitView. You just need to add some javascript codes, such as following: function Button1_onclick() {        var ws = ISGetObject(“WebScheduler1″);        if (ws.IsInSplitViewMode)                 ws.IsInSplitViewMode = false;        else                 ws.IsInSplitViewMode = [...]

Read More