Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-19115] Windows: Ti.UI.Windows.AppBarSeparator not visible

GitHub Issuen/a
TypeBug
PriorityNone
StatusClosed
ResolutionNot Our Bug
Resolution Date2015-07-01T02:08:37.000+0000
Affected Version/sRelease 4.1.0
Fix Version/sn/a
ComponentsWindows
LabelsAppBarSeparator, CommandBar, look1
ReporterFokke Zandbergen
AssigneeKota Iguchi
Created2015-06-30T13:38:48.000+0000
Updated2017-03-28T22:55:22.000+0000

Description

The following example and attached screenshots show that there's no visible difference when you leave out the separator from the list of items.
var backButton = Ti.UI.Windows.createAppBarButton({
        icon: Ti.UI.Windows.SystemIcon.BACK
    }),
    separator = Ti.UI.Windows.createAppBarSeparator(),
    forwardButton = Titanium.UI.Windows.createAppBarButton({
        icon: Ti.UI.Windows.SystemIcon.FORWARD
    }),
    commandBar = Ti.UI.Windows.createCommandBar({
        items: [backButton, separator, forwardButton]
    }),
win = Ti.UI.createWindow();
win.add(commandBar);
win.open();

Attachments

FileDateSize
Screen Shot 2015-06-30 at 15.32.28.png2015-06-30T13:37:58.000+00007906
Screen Shot 2015-06-30 at 15.35.31.png2015-06-30T13:37:58.000+00007702

Comments

  1. Kota Iguchi 2015-07-01

    The separator bar control is only available on Windows Store app. I can see that [MSDN](https://msdn.microsoft.com/en-us/library/windows/apps/xaml/windows.ui.xaml.controls.appbarseparator.aspx) says it supports "*Windows Phone 8.1*"...but it actually doesn't show anything. I found they mentioned about it here... [Controls list (XAML)](https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh465351.aspx) (Search "App bar separator (Windows only)")
  2. Lee Morris 2017-03-28

    Closing ticket as the issue mentioned is not our bug.

JSON Source