Hi everybody,
can i switch the date when i click on the arrow ?
i want step by 5 days but i dont success for the moment
.
thanks for help !
the button code :
scheduler.createTimelineView({
name: “gant5”,
x_unit: “hour”,
x_date: “%H”,
x_step: 2,
x_size: 60,
dy:0,
x_start: 0,
x_length: 24,
y_unit: elements,
y_property: “personnel”,
render:“bar”,
first_hour:<xsl:value-of select=“DispatchingStartDay”/>,
last_hour:<xsl:value-of select=“DispatchingStopDay”/>,
second_scale:{
x_unit: “day”,
x_date: “%l %F %d”
}
});
In your config x_length (that is responsible for scroll step) is equal 24.
Which means when you click arrow button, timeline gets scrolled by x_stepx_length hours, i.e. 242 => 48 hours.
You can either remove x_length(then x_size will be used instead) or set it to needed interval
x_length: 12*5,
ok but dont work correctly :
the date :
Monday 10 March to friday 14 March
click on arrow for next
wednesday 19 March to Sunday 23 March
me i need Saturday 15 to wednesday 19
an idear ? thanks 
Looks like people have been getting the same issue that I have been getting, looks like this is a bug with the scheduling software. Looks like I need to use something else 