Hi,
I have a mobile navbar / toolbar. It only has one item, but is showing an empty Overflow Anchor (see image attached). How can remove the overflow anchor? (Or is there some method to flag for it to auto-hide itself when it's empty?)
I'm trying to adapt the Kendo Mobile demo here: http://demos.telerik.com/php-ui/m/index#navbar/adaptive-toolbar
My code follows.
Thanks.
-Paul
01.
<
div
data-role
=
"toolbar"
style
=
"min-width: 600px;"
data-items='[
02.
{
03.
type: "splitButton",
04.
id: "userDisplayName",
05.
icon: "contacts",
06.
text: "Joe User",
07.
align:"right",
08.
overflow: "never",
09.
menuButtons: [
10.
{
11.
id: "editProfile",
12.
icon: "settings",
13.
text: "edit profile"
14.
},
15.
{
16.
id: "logout",
17.
icon: "history",
18.
text: "Logout"
19.
}
20.
]
21.
}
22.
]'>
23.
</
div
>