Details
-
Type:
Bug
-
Status: Open
-
Resolution: Unresolved
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
-
Environment:
Ti SDK: 5.3.0.v20160509143032
Environment: Windows 10 Pro
Building for Windows 8.1 & Windows 10
Description
Problem
The allows selection property is not doing anything on Windows 10.0, but is working correctly on Windows 8.1.
Test case
Windows 10 incorrectly allows selection:
<Alloy>
|
<Window class="container">
|
<TableView id="exampleTable">
|
<TableViewRow class="exampleRow" title='Apples' />
|
<TableViewRow class="exampleRow" title='Bananas' />
|
<TableViewRow class="exampleRow" title='Carrots' />
|
<TableViewRow class="exampleRow" title='Potatoes' />
|
</TableView>
|
</Window>
|
</Alloy>
|
".container": {
|
backgroundColor: '#FFFFFF'
|
}
|
|
"#exampleTable": {
|
top: '20%',
|
allowsSelection: false
|
}
|
|
".exampleRow": {
|
color: "#000000"
|
}
|
Discussions
Expect the same functionality in Windows 10.0 as Windows 8.1. Using CLI to build the applications locally:
appc titanium build --platform windows --target ws-local --wp-sdk 8.1
appc titanium build --platform windows --target ws-local --wp-sdk 10.0