Click here to Skip to main content
15,890,995 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I need to recreate time line view with respect to a dropdown change.

timeline view sections will change ( from server ). So then events will refresh again after that.

Is there is any method for that?
Posted
Updated 19-Oct-12 21:20pm
v2
Comments
Lijo John v 20-Oct-12 6:39am    
hi
I got the answer

on load
==========
scheduler.createTimelineView({
name: "timeline",
x_unit: "hour",
x_date: "%h:%A",
x_step: 3,
x_size: 24,
x_start: 0,
x_length: 24,
dy: 20,
section_autoheight: false,
///y_unit: sections,
y_unit: scheduler.serverList("MyList", sections),
y_property: "section_id",
render: "tree"
,second_scale: {
x_unit: "day", // unit which should be used for second scale
x_date: "%M %d %D" // date format which should be used for second scale, "July 01"
}
});


on channge
==========
scheduler.updateCollection("MyList", sections);

1 solution

It is suggestible to post issues/discussions related to 3rd party tools at their respective forums.

First look at their documentation if it helps or else post at their support/discussion forum for help. It would be rare that any specific 3rd party control expertise is found here.

Try here:
Forum[^]
Documentation[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900