Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic Calendar Viewport (Read 68 times)
Raeees
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 22
Joined: Dec 11th, 2024
Calendar Viewport
Mar 20th, 2025 at 12:18pm
Print Post  
Hi,
am running through some issue i think. When i use ''true'' on the calendar.viewport as so
Code (Java)
Select All
calendar.setViewport(startDate, endDate, true); 



The timeline doesnt keep its date format. i know the TimeUnit change base on resolution but it should keep its format. this is th current format i use for my top time line. However, as the image below shows, thats the format i get. is there a way around this?
Code (Java)
Select All
ResourceViewSettings res = calendar.getResourceViewSettings();
		res.getTopTimelineSettings().setFormat("EEEE, dd MMMM"); 



Regards.
  
Back to top
 
IP Logged
 
Slavcho
God Member
*****
Offline


tech.support

Posts: 3364
Joined: Oct 19th, 2005
Re: Calendar Viewport
Reply #1 - Mar 20th, 2025 at 4:08pm
Print Post  
Hi,

Usually format strings don't make sense for a different unit, and the resolution-changing code resets them to appropriate defaults for the unit it selects ("mm" for TimeUnit.Minute etc). I guess we could check whether a timeline unit does actually change before resetting its format string, but you could reassign too after changing resolutions Wink

Code
Select All
// setViewport ...

if (res.getTopTimelineSettings().getUnit() == TimeUnit.Month)
    res.getTopTimelineSettings().setFormat("EEEE, dd MMMM");
 



Regards,
Slavcho
Mindfusion
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint