An MVC-inspired Appcelerator framework for the Titanium SDK, with focus on rapid development/prototyping. Contains built-in support for Backbone.js and Underscore.js.
Questions tagged [titanium-alloy]
918 questions
2
votes
2 answers
how to live view in Titanium?
My team have been developing Titanium in the past few months, and now we are facing a problem: when we make changes on the View code(change its font, its background or size) , it takes a long time ( about 1 minute ) until we see the result displayed…

Siwei
- 19,858
- 7
- 75
- 95
2
votes
0 answers
Textarea return key Listener called twice in iOS Apppcelerator?
I have write a function for textArea return key listener in Titanium appcelerator iOS.
$.returnText.addEventListener('return', function(e) {
$.replyMessageTxt.blur();
console.log("click return key");
callbackend() // here will call back end via Api…

Mohanraj S K
- 657
- 4
- 16
2
votes
2 answers
Issue with update query in titanium alloy
I'm new to titanium and alloy framework. I have created the models to store some data. I am able to insert and retrieve the data. I don't know How to update the row.
As suggest I did as follows,
var userLang = Alloy.Collections.userLanguage;
var…

Vinod
- 2,263
- 9
- 55
- 104
2
votes
1 answer
Titanium Alloy Data Binding: How to get current model from clicked view?
I am new to Titanium Alloy, the MVC framework, and Backbone.js, so I'm having a little trouble wrapping my head around some of the concepts.
Similar questions have been asked previously:
Getting ID of clicked TableRow in Titanium Alloy?
Appcelerator…

curzmg
- 647
- 6
- 11
2
votes
0 answers
How to execute Appium test cases with Appcelerator Alloy
I am using Appium.app available on the store and website. I am able to successfully load .app and connect appium with Simulator through which .app can be run on Simulator and logs can be displayed in Appium Inspector. I am able to see available…

Paresh Thakor
- 1,795
- 2
- 27
- 47
2
votes
1 answer
How to create database table in titanium by using model?
I have below 2 approach to create Db table in titanium.
Approach 1 -- Create a sqlite database, using queries in the titanium code. like Ti.Database.open("DBName"); and then create tables using sqlite queries
var db =…

शु-Bham
- 952
- 1
- 7
- 14
2
votes
1 answer
Issue with data biding into Picker in Titanium Alloy
I need to display the Picker values from Database. So How can I display the dynamic values in picker.
XML code
…

Vinod
- 2,263
- 9
- 55
- 104
2
votes
3 answers
How to create radio button in Titanium Alloy?
How can we create a radio button and multi select button in Titanium Alloy framework? Are there any XML tags to create the same?
I tried adding code from your ref and from following link…

Vinod
- 2,263
- 9
- 55
- 104
2
votes
0 answers
Https and SSl issue in Titanium appcelerator IOS mobile Application
I have preare a API call using HTTPClient(titanium ios mobile application).
it is a Login page so ihave use https protocal,(https"//example.com)
but it returns a following error message,
"A connection failiure Occured. SSL problem(Possible causes:…

Mohanraj S K
- 657
- 4
- 16
2
votes
1 answer
How to develop Navigation drawer in Titanium Alloy
I am developing mobile application using Titanium alloy. In That I have to develop Navigation drawer activity just like in facebook app.
So that there is a button at the top header and when user click on it then sliding view come from left side…

Rhushikesh
- 3,630
- 8
- 45
- 82
2
votes
2 answers
Multiple classes on one element in Titanium
I'm having trouble defining multiple classes on one element. To be specific - something is wrong with the tss:
".right": {
layout: "horizontal"
},
".right.top-right": {
width: "50%"
},
Element with classes right and top-right isnt' 50% wide

Marek M.
- 3,799
- 9
- 43
- 93
2
votes
0 answers
Equivalent of NavigationWindow in titanium for android
I created an app on iphone now the client wants same on the android platform. The navigation was handled by the navigation window in IOS but can't find anything similar for android. I have tried the solution given here I am using Titanium Alloy…

Hemant Bavle
- 3,297
- 1
- 24
- 30
2
votes
1 answer
Implement otr.js in titanium appcelator ios?
I'm trying to create a chat application using Titanium appcelerator for iOS. For that i have implemented OTR.JS in my node js application. That works fine, But now i want to implement OTR.JS in Titanium Appcelator.
I searching modules in Titanium…

Mohanraj S K
- 657
- 4
- 16
2
votes
1 answer
Titanium Alloy Backbone and ACS
I'm trying to pass data from Appcelerator Cloud Services to Backbone models. I couldn't find documentation on how to do this...
Below is the config from my model file:
exports.definition = {
config: {
"columns": {
…

CyberJunkie
- 21,596
- 59
- 148
- 215
2
votes
1 answer
Ti Alloy data binding: unable to bind a specific Backbone model instance to the view
To all the Ti Alloy experts out there:
There are a couple of questions out there already dealing with this same problem, none of them marked with an accepted answer and certainly none answered to my personal satisfaction. Let me explain why I still…

quasi-aussie
- 21
- 1