...
The way it works, is that it takes menu items from the top of the burger menu, and places them next to the burger menu. The order of any menu item can be changed as described here.
Code Block |
---|
language | xml |
---|
title | Example |
---|
linenumbers | true |
---|
| <page id="ReceiveLines" type="OrderLines" icon="mainmenureceive">
<title defaultValue="@{PageReceiveOrderLinesTitle}"/>
<orderLinesConfiguration postingTrigger="PostWhenAllLinesCompleteShowDialog" suggestQuantity="true" verifySingleScanRegistrations="false" actionOnEmptyList="ClosePage">
<service id="Receive"/>
...
</orderLinesConfiguration>
<actions>
<open icon="mainmenuscaninfo" id="ItemCrossReference" title="@{AddCrossReferenceMenuItem}" automaticValueTransfer="true" menuPlacement="1">
<returnTransfer property="UnplannedItemRegistrationCompleted" to="RefreshOnResume"/>
</open>
<open icon="mainmenuprint" id="PrintLabelTemplate" title="@{PagePrintLabelTitle}" automaticValueTransfer="true" menuPlacement="2"/>
<open id="RegisterImage" icon="camera" title="@{AttachImages}">
<returnTransfer property="UnplannedItemRegistrationCompleted" to="RefreshOnResume"/>
</open>
<open id="Attachments" icon="attachment" title="@{Attachments}" menuPlacement="3"/>
<open id="LocateItem" icon="mainmenulocateitem" title="@{PageLocateItemTitle}"/>
<showImage id="ShowImage" enabled="true" imageProperty="ItemImage" title="@{MenuItemShowImageTitle}"/>
</actions>
<menu numberOfPromotedItems="3"/> <!-- Writing -1 will take as many items as the screen with will allow. -->
</page>
|
| |
...