Page design with AtlasUI Flashcards

1
Q

What is the naming convention for pages?

A

Entity_PageType
for example: Product_NewEdit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the naming convention for a page that’s meant for a particular user role?

A

Entity_PageType_UserRole
for example: Product_Overview_Anonymous

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which three default navigation layouts does Atlas UI offer?

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are scroll containers used for?

A

Scroll containers are used to divide the layout into individual regions.

Note:
Scroll containers can only be placed directly into other scroll containers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

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

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which one of the following options is used for featuring the navigation menu in a sidebar?

  1. Atlas Sidebar
  2. Atlas Default
  3. Atlas Topbar
  4. Popup
A
  1. Atlas Default

Note:
Atlas Sidebar doesn’t exist

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which of the principles needs to be utilized to reduce duplication of already created elements?

  1. BUY
  2. FLY
  3. TRY
  4. DRY
A
  1. DRY
    Don’t Repeat Yourself
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Where should you configure that only selected roles are allowed to see a container on a page?

  1. In the Navigation visibility property of the Page.
  2. In the User tab of the Project security.
  3. In the Conditional visibility property of the container.
  4. In the Page Access tab of the Module Security.
A
  1. In the Conditional visibility property of the container.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What are the default Mendix options for the popups?

  1. Resizable with size determined automatically, with layout grid as the most outer layer of the page.
  2. Fixed size determined automatically, with layout grid as the most inner layer of the page.
  3. Fixed size determined automatically, with layout grid as the most outer layer of the page.
  4. Resizable with size determined automatically, with layout grid as the most inner layer of the page.
A
  1. Resizable with size determined automatically, with layout grid as the most outer layer of the page.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What’s the biggest difference between the Before Event Handler and the After Event Handler?

A

Before Event Handlers always need a Boolean return value. This value tells the app whether it should continue with the event or abort it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly