Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

Excerpt

Additional actions The menu contains additional actions and is visible in the lower left right corner of many pagesall pages, which have actions defined. These can be manually created, or created by the application to provide functionality available on the current page. Such as deleting registrations on an order lines page.

All menu items can be shown, or hidden, as well as ordered individually. That way, menu items which are most important can be moved around to fit the specific use case.

Also known as "Burger Menu"

Types of actions

There are two kinds of actions.

Open

  • Navigates to another page/tasklet

Code Block
languagexml
titleExample
linenumberstrue
<actions>
  <open id="NavigageToThisPageID" icon="mainmenupick" title="Pick"/>
</actions>

AdhocRegistrations 

Sends a Single parameter to the Backend

  • Is handled by the Ad Hoc Registration Codeunit
  • Typically used for initiating a process i.e. Moving an Item

Code Block
languagexml
titleExample
linenumberstrue
<actions>          
	  <adhocRegistration id="NameOfAction" registrationType="RegistrationTypeSentToBackend" icon="mainmenupick" title="Pick" />
</actions>

Menu item ordering

Ordering is possible both for the action menu, and the context menu which appears by long pressing a line.

  • The menuPlacement defines the order of the menu item in the burger menu.
  • The contextMenuPlacement defines the order in the context menu, appearing on long press.

Less is more, so the lower the number the higher the priority of the item, and the further up the list it goes. If instead the value is set to OFF the menu item will not be available in that menu. So items can be shown in one menu and hidden in another, on the same page.

Code Block
languagexml
firstline1
titleExample
linenumberstrue
<actions>
  <!-- Item has priority 1 in the burger menu, and has priority 10 in the context menu. -->
  <open id="RegisterImage" icon="camera" title="@{AttachImages}" menuPlacement="1" contextMenuPlacement="10">
  <!-- Item has priority 1 in the burger menu, and is hidden in the context menu. -->
  <open id="Attachments" icon="attachment" title="@{Attachments}" menuPlacement="1" contextMenuPlacement="OFF"/>
</actions>

Note, that if two items have the same placement number, they will be added in the order that the configuration states.

Tip: 

You can promote actions using "numberOfPromotedItems". See Page Mobile Configuration



Action menu


Explore the Mobile WMS App

Page Tree
rootMobile WMS App