Link between two Tabs
Hi,
is there a way to open a tab from another via the eventListener?
My example is this here:
buttonSearchNowDat.addEventListener('click', function(e){
if (usePickerDate == true && cityPicker == true && categoryPicker == true) {
win = Titanium.UI.createWindow({
url: 'searchResults.js',
title: 'Suchergebnisse',
backgroundColor: '#fff',
barColor: '#111',
overviewDate: searchDate,
overviewCity: searchCity,
overviewCat: serachCategory
});
}
}
Titanium.UI.currentTab.open(win, {animated: true});
I want to get instead of url: 'searchResults.js'
my Tab which relates to my 'overview.js'