Hi all
I am trying to build a straightforward time slot booking system
- Patch in SharePoint list
- *(Dynamic) Show available time slots by date selected
- remove/disable once clicked on Booked
Collection:
ClearCollect(
colAppointment,
{
TimeCol: "11:00",
Booked: false
},
{
TimeCol: "11:30",
Booked: false
},
{
TimeCol: "12:00",
Booked: false
},
{
TimeCol: "12:30",
Booked: false
},
{
TimeCol: "13:00",
Booked: false
},
{
TimeCol: "13:30",
Booked: false
},
{
TimeCol: "14:00",
Booked: false
},
{
TimeCol: "14:30",
Booked: false
}
);Patch Btn:
Patch(
'Solo Protect Appointments',
Defaults('Solo Protect Appointments'),
{
DateOf: _DateOf.Text,
TimeOf: _TimeOf.Text
}
);
Patch(
colAppointment,
ThisItem,
{Booked: true}
);
Refresh('Solo Protect Appointments')App:
Current issue(gif)(when selecting different date "book time slot" not showing)
Thank you

Report
All responses (
Answers (