Be sure to first read the article Customization Recommendations.
A common real-world scenario is the need to create a new choice column in a form. There are several different methods to achieve this, but the method described here ties together much of the content noted in other customization articles and is relatively easy to maintain. The scenario noted below uses the example of adding a new Building choice column to a Project form; you can substitute in your own specific requirements as necessary.
- In the unmanaged solution in your dev environment that you use for customizations:
- Create a new table named Building.
- Add the existing out of the box Project table to the solution, if it's not already present.
- In the Project table add new Lookup column Building and configure it to do a lookup to the Building table. Save the modified table.
- If in the Project table's Forms component you do not yet have a custom Project form of your own, make a copy of an out of the box project form by loading it and using Save as, and then name the new form as desired. If this is a new form, be sure to follow all the new form instructions found in the Customize Forms article.
- In your custom Project form add the Building table lookup column by choosing the + Form field option in the menu, and place it in the desired location. Save, publish and close the modified form. See also Customize Forms.
- To make it easy for users in the future to update the list of choices available in the Building column, you can create a navigation link to the Building table by modifying the app site map:
- Load the BrightWork 365 site map.
- Choose the section Admin | Other and click + Add | Subarea.
- In the Properties configuration section for the new Subarea, set the Entity value to Buildings.
- Publish, save and close the site map.
- Load the BrightWork 365 site map.
- Load the BrightWork 365 app in your development environment and switch to the Admin area.
- Click Buildings in the left navigation pane and add desired building choices using + New.
- Load a project that was created from a template that is configured to use your custom Project form.
- In the chosen project click into the Building column, choose a Building choice and save the changes.
- After your testing has completed successfully you can proceed to port the changes over to your production environment as outlined in the article Customization Intro & Recommendations.
- Create a new table named Building.