Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic List of Resources (Read 850 times)
Bruno Dufour
YaBB Newbies
*
Offline


I Love MindFusion!

Posts: 15
Joined: Jul 28th, 2022
List of Resources
Aug 4th, 2022 at 12:34pm
Print Post  
Is there a way to have a List view where the column headers are the resources and the tiles are the appointments ?

(Similar to sample : ListView)

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


tech.support

Posts: 3152
Joined: Oct 19th, 2005
Re: List of Resources
Reply #1 - Aug 4th, 2022 at 6:57pm
Print Post  
You can show resource columns in a vertical list view by setting GroupType, but they will be further divided in CellUnit rows. Try this:

Code
Select All
calendar.setCurrentView(CalendarView.List);
calendar.setGroupType(GroupType.GroupByResources);

ListViewSettings settings = calendar.getListViewSettings();
settings.setCellUnits(TimeUnit.Year);
settings.setNumberOfCells(10);
settings.setVisibleCells(1);
settings.setVisibleColumns(4);
settings.setItemOrientation(Orientation.Horizontal);
settings.setOrientation(Orientation.Vertical);
settings.setHeaderSize(0);
settings.setShowGroupHeader(true);
settings.setGroupHeaderSize(40); 



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