I am working to make my app more efficient utilizing more references and combining my data into larger tables with slices as described here:
I have a single âCatalogâ table which contains 4 different types of products (rather than 4 different tables for each product type). This catalog table does not allow additions, deletes or edits. The data is displayed via a Dashboard with a view made from a slice created from each of the 4 products. From this slice view you can add the product to the âInventoryâ table.
The âInventoryâ table allows additions, deletions and edits. There is column reference to the Catalog table. The âInventoryâ table needs to be populated either from the products in the catalog table (using the action I created) or the user can add an item outside of the catalog table. I use a dashboard view created from slices of the products in inventory table to display the data. Unfortunately, the floating âAddâ action is not showing up in the slice view of the dashboard. Therefore I canât add an item outside of the those in the catalog table. Any suggestions of where I am making an error?