[TIMOB-19115] Windows: Ti.UI.Windows.AppBarSeparator not visible
| GitHub Issue | n/a |
|---|---|
| Type | Bug |
| Priority | None |
| Status | Closed |
| Resolution | Not Our Bug |
| Resolution Date | 2015-07-01T02:08:37.000+0000 |
| Affected Version/s | Release 4.1.0 |
| Fix Version/s | n/a |
| Components | Windows |
| Labels | AppBarSeparator, CommandBar, look1 |
| Reporter | Fokke Zandbergen |
| Assignee | Kota Iguchi |
| Created | 2015-06-30T13:38:48.000+0000 |
| Updated | 2017-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
| File | Date | Size |
|---|---|---|
| Screen Shot 2015-06-30 at 15.32.28.png | 2015-06-30T13:37:58.000+0000 | 7906 |
| Screen Shot 2015-06-30 at 15.35.31.png | 2015-06-30T13:37:58.000+0000 | 7702 |
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)")
Closing ticket as the issue mentioned is not our bug.