Suppose I design a skillset application. I create a PersonClass, define its properties, and create Sheet and Template. I also create a SkillClass and do similar things.
I would like to link these two and I have an option of making PersonClass the parent of SkillClass (while creating object/doc of skills).
I could also redesign PersonClassSheet to add a sql to retrieve a person's skills and render them in a table.
My question now is, how to I ensure Person editing page does not include the Skill table?
Should I create a new page (PersonSkill) that includes PersonClassSheet and SQL+Table layout instead of modifying PersonClassSheet?
To take it little further, if I have page with list of Persons, how do I link above new PersonSkill page to corresponding Person entry in the table?
Thanks, Patrick