How to create a calender where when we click on he date on the right side we get the events based on the date

0
Hi Experts I need help for creating the calender where when  I click to any date I get the desired event on the particular date on the right side.     I have shared the creenshot above. please help me in details. I can use marketplace module only i it is platform supported and created by mendix  
asked
1 answers
0

Hi Harsh - One approach is to try the below steps.

Domain Model

  • Create a 1-to-many association between Date and Appointment entity

Page

  • Create a list view on the left side to display all dates you want to(using the appropriate data source)
  • Add custom styling to this list view to match the screenshot appearance
  • Add a dataview component on the right side
  • Set the dataview's data source to 'Listen to widget'
  • Select the list view you created as the widget to listen to
  • This dataview will now receive the date object when selected
  • Inside this dataview, add another list view
  • Configure this inner list view to display dates associated with the selected date
answered