I've set up a basic Creator application, with several tables. It's intended to keep track of application specs, functional tests against the specs, and defect reports.
However, it's unclear where I go from here. I'm used to doing database apps using C# and SQL Server. I realize that one option would be to keep using C# and the Creator API to manipulate the tables. But I'd rather do it all in Zoho. So I'd appreciate help in getting started. Maybe there's a tutorial I've overlooked. Anyway, here's a simplified version of what I want to do.
- I want to be able to add new specs, functional tests, and defects. For a functional test, I want to be able to link it against a spec. Similarly, a defect report should be linked to a spec and to a functional test.
- I want to be able to scroll thru the specs, click one one, and have it give a table of all the associated functional tests.
- Similarly, I want to be able to click on a functional test and see the associated defect reports.
So, how would I go about this? It seems like I should be doing this with HTML Views, using a Form to edit/add data. Right so far? However, in an HTML View, I don't see for example how to add standard controls like buttons, or more advanced controls like grids.
So, any help appreciated.
--Bill