Allows pining toolbar buttons to the navigation bar in Lycia with Material Design.
Form XML code:
Theme property filter XML code:
<SetProperty>
<PropertyPath>
<PropertyName>Place</PropertyName>
</PropertyPath>
<PropertyValue>top</PropertyValue>
</SetProperty>
Possible values:
top
top-popup
Default value:
top-popup
Associated containers, widgets, and theme elements:
Associated ui methods:
setPlace() ↓
getPlace() ↓
Influence and behavior:
By default, if there are more than 6 buttons in a toolbar with MD Lycia, they are rendered to the drop-down menu. This behavior is set by the default value, top-popup:
When place is set to top, this toolbar button is rendered to the navigation bar:
or
runtime behavior:
At runtime, you can use ui methods to specify the place of the toolbar button:
LET widget_var = ui.<widget>.ForName("widget_id")
DEFINE tbb_1 ui.ToolbarButton
...
LET tbb_1 = ui.ToolbarButton.ForName("tbb1")
...
DISPLAY "With tbb1, place =", tbb_1.getPlace()
...
CALL tbb_1.setPlace("top")