Questions tagged [titanium-alloy]

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.

918 questions
0
votes
1 answer

Titanium : access analytics via API?

I am using the Titanium mobile library (with the Alloy framework), and I have started tracking custom events by using the Ti.Analytics.FeatureEvent() function. I'd like to be able to retrieve the data that I have sent to Appcelerator via an API. is…
GSto
  • 41,512
  • 37
  • 133
  • 184
0
votes
1 answer

Titanium Alloy ListView XML Uncaught TypeError: Object # has no method 'createTemplates'

I am new to Titanium, so excuse my lack of understanding. Even though I am using sdk version 3.2 (have sdk-version: 3.2.0.v20130801162445 in my tiapp.xml) when I try and have a view that uses the xml above I get this error: [ERROR][V8Exception( …
contractorwolf
  • 438
  • 1
  • 3
  • 14
0
votes
1 answer

Confused about working with nested models in Titanium Alloy

The goal is simple. My app has a messaging component. The way I'm planning on structuring it is by having a Conversation model, which has some attributes (subject, start date, uID), and each Conversation will contain many Message…
Benjamin Allison
  • 2,134
  • 3
  • 30
  • 55
0
votes
1 answer

How to maintain TSS styles when changing height / toggling view visibility?

Consider an expanded and a collapsed View, one visible at a time, toggled on click events. In a TableRowView, I can set the TableViewRow height and toggle between the expanded and collapsed Views. The views show, but the TSS styles are lost - for…
Joe Beuckman
  • 2,264
  • 2
  • 24
  • 63
0
votes
2 answers

error appearing in kue ui when trying to run it

This is the error in the kue ui at localhost:6379/active in my web browser. TypeError: E:\development\workspace\wmtservices\node_modules\kue\lib\http\views\_filter.jade:3 1| select#filter 2| option(value='') filter by > 3| - each type in…
sinha
  • 1
  • 1
0
votes
2 answers

Titanium / Alloy widgets and controllers

I'm building an application with Titanium SDK 3 using the AlloySliderMenu widget. This widget reates a slider menu like Facebook application. It sounds like it is easy to use, but i'm facing the following issue. In the index.xml I require the…
0
votes
1 answer

admob issue with titatinum alloy

I am using titanium 3.x studio. I want to display google advertisement in my application. For that i am using admob module for android. My xml file settings are:
0
votes
1 answer

How to display iPhone contacts like path

How to display iPhone contacts with email like path application. I tried following code, its show the contacts name, when I click the contact it navigate to contact details page. But, I need to display contacts in table view then user click customer…
Praveen Kumar
  • 308
  • 1
  • 4
  • 18
0
votes
1 answer

Titanium Alloy MVC framework--"Model" query

I'm learning how to code & I'm trying to understand the following code from an app built w/ the Titanium Alloy MVC framework. The below code is from the model file called class. I've done research on the Alloy MVC framework, but I'm still confused…
0
votes
1 answer

Titanium TableView disappears when two TableViews are on same view

This is for a mobile app, running on the iPhone simulator, using SDK v 3.0.2 GA and the Alloy framework. I have a window that has a tableview with an autocompleting search bar atop that table view. When the autocomplete begins to fire, it displays a…
Justin Davis
  • 305
  • 1
  • 3
  • 16
0
votes
1 answer

trying to add an xml file to app

So i am makeing an app in Titanium alloy and i want the app to recognize an XML file i made. for example when i make a new JS file in my controller folder i need to add this code to the alloy.js file. Alloy.createController("sub_board"); What is…
Mikecit22
  • 157
  • 1
  • 14
0
votes
1 answer

Making app in Titanium, trying to call function in js file 2 from js file 1

Making app in Titanium, i am trying to call a function in another js file i made. i am tring to call function from my index.js. when i do so it cant find it. i think it is a scope issue. in java i would make an object of a class and do…
Mikecit22
  • 157
  • 1
  • 14
0
votes
2 answers

Table row event listener not working after set table moving property to true

I use titanium to develop iPhone application, in a tableView I set table moving property to true, after giving this property the row click event listener not working. var contentArry = []; var containerTbl = Ti.UI.createTableView ({ …
Praveen Kumar
  • 308
  • 1
  • 4
  • 18
0
votes
1 answer

Titanium get current view on scrollableView and add an item

I have a scrollableView with several views inside and I'd like to add item to some of these view if they meet a certain criteria, like if they have data attached or not. Also I'm using Alloy, here's my markup
0
votes
1 answer

User Authentication using Alloy Titanium

I am new in titanium alloy development project, we already have an android app which was built on titanium template. I would like change this to alloy template. My current issue is I need to make a user…