There are XII of new sweetenings that we 've done in WebScheduler2.0 SP1. In that station, I 'm attending share a couple of of the freshly added features associated to the schedule perspective in WebScheduler. These new features enable you to custom-make the piloting and point info in docket position.
In the screenshot below, you can find 3 pilotage buttons ( Delete Event, Edit Event, and Perspective on my calendar ) besides as 2 points ( Location and Description ). These scenes are the default position constellation in WebScheduler, and not customizable before the sweetenings.

In WebScheduler SP1, we hold added 2 new belongings in AgendaViewSettings
which lets you to tailor-make schedule position 's piloting and item info.
These new holdings are:
- DisplayViewOnMyCalendarLink
This holding finds whether `` Position on my calendar '' button should seem in the perspective or not. By default this belongings is layed toTrue.To conceal the `` Perspective on my calendar '', merely layed the holding to False. The outcome should look like the below screenshot.
</p>`` Delete Event '' and `` Edit Event '' button can be custom-maked through DataEditing
belongings. For example, posed AllowEdit
belongings to False will conceal the `` Edit Event '' button. - UseAgendaDetailsCollection
You can tailor-make the info points that will be exposed in schedule position through the new AgendaDetailsCollection
holding. For the assemblage to take affect, you would demand to pose UseAgendaDetailsCollection
holding to true, which teaches WebScheduler to utilize the points accumulation alternatively of the default/built-indetails.For an case, we can conceal the default details completely by only posing the UseAgendaDetailsCollection
belongings to true and leave the AgendaDetailsCollection
empty. The issue looks like the followers.
The following inquiry would be how to stipulate custom-made item info to be included in docket perspective. It is easy as WebScheduler already supply the object framework, which can be reached from both waiter and client-side.
The undermentioned Javascript codification presents how you can add custom-made item info in the client-side during Initialisation
event. Remark that the OnInitialize client-side event is merely available in SP1 release.function OnInitialize(controlId)
{
var WebScheduler1 = ISGetObject(controlId);
var agendaDetailsCollection = WebScheduler1.AgendaDetailsCollection;var obj = new WebSchedulerAgendaContentDetail();
obj.Caption = "Place";
obj.DataMember = "Location";
agendaDetailsCollection.Add(obj);var obj2 = new WebSchedulerAgendaContentDetail();
obj2.Caption = "Information";
obj2.DataMember = "Description";
agendaDetailsCollection.Add(obj2);var obj3 = new WebSchedulerAgendaContentDetail();
obj3.Caption = "Important";
obj3.DataMember = "Mode";
agendaDetailsCollection.Add(obj3);
}In the codification snipping supra, I filled AgendaDetailsCollection
with 3 items ( Location, Description, and Manner ) which I would wish to exhibit in docketview.Here is the effect.
AgendaViewSettings
can be bumped in WebScheduler & gt; & gt; ViewSettings
That Holds all about schedule position customization sweetening. I desire you basked our new sweetenings and get your plants maked quicker!
If you hold interrogations or feedback on these sweetenings, delight make n't waver to notice on my station.
Warm Regards,
Budianto Muliawan
Related posts:
Two texts of the AMR on the womens motility ( 1970/71 )
Birdwatching Doodletown
The Host by Stephenie Meyer.


























