I'm in the process of building a more complex application using the Angular example as a base. What's not completely clear in the example is what to do when you have more tables. In the "good old days" you'd have a List.ascx, View.ascx and Edit.ascx for each table and that was pretty much it. If you had a lot of tables you ended up with a lot of pages, but structure and navigation was pretty simple.
Using Angular I see the view.ascx has the list, view and edit capabilities as panels. These are managed by the item-app.js. What happens when table #2 comes along? Does everything go into view and a single js, or do I create one per table?
COnsider this structure:
contacttype <- contact -> registration <- event -> eventtype
How would you recommend that be structured?