Problem
I have a tableView with a row, header, and index. I've attached focus/blur events to the searchBar, to hide/show the navBar. When the searchBar is focused the first header from the tableView is shown above the black fade.
Expected Behavior
The header should be below the black fade.
Test case
var win = Titanium.UI.createWindow();
win.open({
modal: true,
animated: false
});
var searchBar = Ti.UI.createSearchBar();
searchBar.addEventListener('focus', function() {
win.hideNavBar();
});
searchBar.addEventListener('blur', function() {
win.showNavBar();
});
var table = Ti.UI.createTableView({
search: searchBar,
data: [{"header": "A", "title": "A"}],
index: [{"index": 0, "title": "A"}]
});
win.add(table);
This is resolved in 2.0. Please update the SDK and test.
Can't reproduce with the latest CI build.