Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Critical
-
Resolution: Fixed
-
Affects Version/s: Release 6.2.2, Release 6.2.0, Release 6.2.1
-
Fix Version/s: Release 6.3.0
-
Component/s: iOS
-
Labels:
-
Environment:
Operating System
Name = Mac OS X
Version = 10.13
Architecture = 64bit- CPUs = 4
Memory = 17179869184
Node.js
Node.js Version = 6.10.0
npm Version = 3.10.10
Titanium CLI
CLI Version = 5.0.14
Titanium SDK
SDK Version = 6.2.1.GA
SDK Path = /Users/ml/Library/Application Support/Titanium/mobilesdk/osx/6.2.1.GA
Target Platform = iphone
Operating System Name = Mac OS X Version = 10.13 Architecture = 64bit CPUs = 4 Memory = 17179869184 Node.js Node.js Version = 6.10.0 npm Version = 3.10.10 Titanium CLI CLI Version = 5.0.14 Titanium SDK SDK Version = 6.2.1.GA SDK Path = /Users/ml/Library/Application Support/Titanium/mobilesdk/osx/6.2.1.GA Target Platform = iphone - CPUs = 4
Description
Hi,
i place a tableview into a view component and attach a searchbar.
By typing into the searchbar, the filter-result appears always on the very left side
of the window. Happens not with SDK 6.1.2 and earlier.
Short Example Code:
Ti.UI.backgroundColor = 'white'; |
var win = Ti.UI.createWindow(); |
var view = Titanium.UI.createView({ |
top: 30,
|
width: 400,
|
left: 150,
|
});
|
var tableData = [{ |
title: 'Apples' |
},
|
{
|
title: 'Bananas' |
},
|
{
|
title: 'Carrots' |
},
|
{
|
title: 'Potatoes' |
}
|
];
|
var searchBar = Titanium.UI.createSearchBar({ |
showCancel: true, |
});
|
var table = Ti.UI.createTableView({ |
data: tableData,
|
search: searchBar,
|
width: 300
|
});
|
view.add(table);
|
win.add(view);
|
win.open();
|