I have a RadGrid with child DetailsTables bound to Entity Data sources. This all works.
How do I add dynamically add a column to, say, a second-level Data Table, which gets the "MAX" value for the third-level Data Table.
For example:
- Job Type
- Job <--- [I need to show the Wage for the current Effective Date here]
- Effective Date(s) + Wage
I figure I'll need to do this dynamically, as it's too tricky to determine the current effective date, e.g. (now <= Effective Date).First() .
Anyway, not sure if I do this in ItemCreated for the OwnerTableView of the DetailsTable or in a higher-up event.
Thanks.
How do I add dynamically add a column to, say, a second-level Data Table, which gets the "MAX" value for the third-level Data Table.
For example:
- Job Type
- Job <--- [I need to show the Wage for the current Effective Date here]
- Effective Date(s) + Wage
I figure I'll need to do this dynamically, as it's too tricky to determine the current effective date, e.g. (now <= Effective Date).First() .
Anyway, not sure if I do this in ItemCreated for the OwnerTableView of the DetailsTable or in a higher-up event.
Thanks.