Hi All,
I'm looking for a Best Practice for this task:
- Planning multiple persons on a per-Day basis:
Imagine three tables:
- a table person (id [PK], name)
- a table calendar (id [PK], day)
- a table planning (id [PK], person_id [FK], calendar_id [FK], intvalue).
I'd like to build a Form with the dates (days of current month) as Columns+one person column in the front.
The different persons are shown as rows (a row is only shown if at least one entry for that person exists in the n:m table in that timespan).
It should have an "add row" button and execute the CRUD operations on the n:m table as I edit the rows.
I'd think that this is a pretty interesting use case, but couldn't find anything like this in the showcases.
Of course you could use the Databound Calendar for this, but this is not what I'm looking for. The form should look like an Excel sheet.
Thank you for your suggestions,
Blama
I'm looking for a Best Practice for this task:
- Planning multiple persons on a per-Day basis:
Imagine three tables:
- a table person (id [PK], name)
- a table calendar (id [PK], day)
- a table planning (id [PK], person_id [FK], calendar_id [FK], intvalue).
I'd like to build a Form with the dates (days of current month) as Columns+one person column in the front.
The different persons are shown as rows (a row is only shown if at least one entry for that person exists in the n:m table in that timespan).
It should have an "add row" button and execute the CRUD operations on the n:m table as I edit the rows.
I'd think that this is a pretty interesting use case, but couldn't find anything like this in the showcases.
Of course you could use the Databound Calendar for this, but this is not what I'm looking for. The form should look like an Excel sheet.
Thank you for your suggestions,
Blama
Comment