Page design with AtlasUI Flashcards
What is the naming convention for pages?
Entity_PageType
for example: Product_NewEdit
What is the naming convention for a page that’s meant for a particular user role?
Entity_PageType_UserRole
for example: Product_Overview_Anonymous
Which three default navigation layouts does Atlas UI offer?
Atlas Default (featuring the navigation menu in a sidebar)
Atlas Topbar (featuring the navigation menu in a topbar)
Popup (a popup page instead of a full-width page)
What are scroll containers used for?
Scroll containers are used to divide the layout into individual regions.
Note:
Scroll containers can only be placed directly into other scroll containers.
Say that you allow anonymous user into your Amazon like app
Which one of the follwing pages will you have to change completely?
A. Login page
B. Home page
C. Nothing
A. Login Page
You would need to provide an option for users to browse and interact with your app without logging in initially. This could include features like browsing products, viewing product details, adding items to a cart, and starting the checkout process as an anonymous user. You might also want to allow them to create an account or log in later if they decide to make a purchase or access additional features.
Which one of the following options is used for featuring the navigation menu in a sidebar?
- Atlas Sidebar
- Atlas Default
- Atlas Topbar
- Popup
- Atlas Default
Note:
Atlas Sidebar doesn’t exist
Which of the principles needs to be utilized to reduce duplication of already created elements?
- BUY
- FLY
- TRY
- DRY
- DRY
Don’t Repeat Yourself
Where should you configure that only selected roles are allowed to see a container on a page?
- In the Navigation visibility property of the Page.
- In the User tab of the Project security.
- In the Conditional visibility property of the container.
- In the Page Access tab of the Module Security.
- In the Conditional visibility property of the container.
What are the default Mendix options for the popups?
- Resizable with size determined automatically, with layout grid as the most outer layer of the page.
- Fixed size determined automatically, with layout grid as the most inner layer of the page.
- Fixed size determined automatically, with layout grid as the most outer layer of the page.
- Resizable with size determined automatically, with layout grid as the most inner layer of the page.
- Resizable with size determined automatically, with layout grid as the most outer layer of the page.
What’s the biggest difference between the Before Event Handler and the After Event Handler?
Before Event Handlers always need a Boolean return value. This value tells the app whether it should continue with the event or abort it.