I have this simple Titanium js script. app.js var win = Ti.UI.createWindow(); var webview = Ti.UI.createWebView({ url: 'logging.html' }); webview.addEventListener('help',function(){ alert('help');...
I have two functions, lets call them functionA and functionB Inside each of these functions are XHR calls to download files, if I call the functions as follows functionA(); functionB(); They will both execute, however functionB can many times fin...
i'm able to parse in and display data for all pieces of my code except in this line " where: " + e.gd$where.valueString + // < this line is displaying undefined here is the code block that is doing the processing. everything else di...
I am trying to figure out the best way to securely save user info in my Android mobile app built using Titanium. I am confused about the best way to do it. It seems that the easiest way is to save it as a property. Something like......
I'm working on a file uploader, where about 10 files upload at the same time via a for loop. Now I am trying to create a cancel button to cancel ALL the uploads, however with my current code, only the very last upload will cancel. I've...
I've got myself a bit confused here, so I'm looking for a bit of guidance. Basically, I have an app which talks to an API and gather information on 'Tours'. The first request retrieves the 3 tours (ID and Name) and stores it in a dat...
I can't get two ImageViews to appear side by side in a Titanium iOS app. My Alloy code looks like this: <Alloy> <Window class='container' statusBarStyle='Ti.UI.iPhone.StatusBar.LIGHT_CONTENT'> <View height=&...
I want to create a tableview with checkboxes for android using titanium mobile. The problem is i dont know how and where i can store and check the state of the checkboxes using javascript in titanium....
I'm using Appcelerator Titanium but I want a good JS library to help with object and array manipulation. A cut down version of dojo or jQuery with out references to window, navigator or the DOM would be good. Many thanks. Can anyone suggest on...
app.js var win1 = Titanium.UI.createWindow({ title:'Tab 1', backgroundColor: 'black', layout: 'vertical', }); win1.open(); Titanium.App.addEventListener('click', function(e) { console.log('click...
©2020 All rights reserved.