The users want to horizontally slide on one year, without using the blue arrows of the Controls Bar.
Here is the code.
But when the Timeline is drawn, the horizontal slider stops at 89 days instead of the 365 expected days.
Is there a way to go beyond this 89 days limited period without using the controls bar?
Thanks in advance
Regards
Here is the code.
Code:
[INDENT] this.planning = new Timeline(); this.planning.setID("BannerFormViewImpl_planning"); this.planning.setHeight(300); this.planning.setWidth100(); Date today = new Date(); this.planning.setStartDate(today); CalendarUtil.addDaysToDate(today, 365); this.planning.setEndDate(today); this.planning.setShowControlsBar(false); [/INDENT]
Is there a way to go beyond this 89 days limited period without using the controls bar?
Thanks in advance
Regards
Comment