Questions tagged [sencha-touch-2.3]

Sencha Touch, a high-performance HTML5 mobile application framework, is the cornerstone of the Sencha HTML5 platform.

Sencha Touch, a high-performance HTML5 mobile application framework, is the cornerstone of the Sencha HTML5 platform. Built for enabling world-class user experiences, Sencha Touch is the only framework that enables developers to build powerful apps that work on iOS, Android, BlackBerry, Windows Phone, and more.

More and more companies are investing in their future by developing with HTML5.

Home: http://www.sencha.com/products/touch/

76 questions
0
votes
1 answer

Resource Caching in sencha development

I am using development version of sencha which included microloader --> development.js. I have mentioned disableCaching:false inside loader. Still its not cache the resource and duplicate the resource (images,index.html too) when i switch between…
RED.Skull
  • 1,696
  • 3
  • 24
  • 49
0
votes
1 answer

sencha apply a set of filters at once

I'm trying to apply several filters at once. Because there is a listener on the filters that will retrieve information from an online store when the filters are cleared. So I need them to be replaced at once. The filter function is being called, log…
MrFox
  • 4,852
  • 7
  • 45
  • 81
0
votes
1 answer

sencha horizontal scroll with a list

I am trying follow the list-horizontal example given by Sencha. I am getting a message saying ( The base layout for a DataView must always be a Fit Layout ) In the example it is not a fit layout. Could someone please tell me what I am missing…
0
votes
1 answer

Disable scroll on sencha dataview list

In sencha touch 2.3.1 there is no property named scrollable on the Ext.dataview.List. How can I disable scrolling on a Ext.dataview.List ?
userx
  • 1,083
  • 5
  • 18
  • 36
0
votes
2 answers

How do I stop a Sencha Touch list from changing view to the first record when the store loads?

I have a Sencha Touch infinite list (with scroll to top on refresh set to false) of chat messages – the most recent ones are at the bottom. When I load the store, the list always refreshes the view to the first record i.e. the topmost record i.e.…
John Doe
  • 1,005
  • 2
  • 8
  • 23
0
votes
0 answers

Add Dynamically A View in another View

I have created a view Ext.define("App.view.leaders.MyViewName", { extend: 'App.view.basePopup', xtype: 'MyViewName', config: { scrollable: 'vertical', items: [ { …
Rishabh Garg
  • 706
  • 1
  • 9
  • 28
0
votes
1 answer

Sencha Touch - Sprite Event Listeners

I have been trying to add a touch event listener to my app in Sencha touch 2.3.1, but the listener is not added. This is my code overview : var drawComponent = new Ext.draw.Component(); var myCircle1 = drawComponent.getSurface('main').add({ …
user2527177
  • 55
  • 1
  • 5
0
votes
1 answer

Sencha cmd 5 , No such command "app package"

I am following this tutorial : http://docs-origin.sencha.com/touch/2.3.2/apidocs/#!/guide/native_packaging-section-additional-resources when I run the command sencha app package build android.json I get this error : Sencha Cmd v5.0.2.270 [ERR]…
zizoujab
  • 7,603
  • 8
  • 41
  • 72
0
votes
0 answers

Button listener stops triggering after packaging

I have several buttons that trigger correctly even after packaging, and they are being declared in the exact same way. The only apparent change this button has is that it is placed within a modal. The listeners are being correctly initialized, I can…
0
votes
1 answer

Sencha Touch: show in a store's list a field of another store

I'm working on a Sencha Touch App. This App have 3 lists: clients, tasks and asignations. Each one has its own model and store. The 3rd one, asignations lists, is an asignations of a task to a client, so that list must show which task and client are…
kikerst
  • 1
  • 1
0
votes
2 answers

In Sencha Touch, how do I notify all stores associated with a model after calling MyApp.MyModel.load()

How do I notify all stores associated with a model after calling MyApp.MyModel.load()? Alternatively, is there a way to load 1 record by Id from the context of a store? My ultimate goal is to fetch one single record from the server and refresh a…
John Doe
  • 1,005
  • 2
  • 8
  • 23
0
votes
1 answer

Sencha AlternateClassName do not work in compiled version

I'm working in a Sencha application. I've created a couple of Utilities classes as singleton components (helpers, services, etc). I'm using alternateClassName to have a shorter name for those classes. It works perfect, but stop working after…
Milton
  • 928
  • 1
  • 10
  • 22
0
votes
1 answer

Chat-like list view in Sencha Touch

I have a list that is sorted such that the most recent items appear at the bottom just like a chat window, in which the most recent message typically shows up at the bottom. This list is inside a view that has a toolbar at the top and a textfield at…
John Doe
  • 1,005
  • 2
  • 8
  • 23
0
votes
0 answers

Sencha Touch associated model fetching

I have a model "Order" that "hasMany" "Item"s I get a push notification from my server that a new Item has been added to the Order. I also get the new Item's id. Now, I'd like to fetch that Item (from the server) and then add it to the Order.items()…
John Doe
  • 1,005
  • 2
  • 8
  • 23
0
votes
2 answers

Sencha Touch background syncing of store

I have a list that is bound to a store. I have a input text field (think chat like UX), and when the user clicks on a button, I do: var newMessageData = { text: textMessage }; var message = Ext.create('MyApp.model.Message',…
John Doe
  • 1,005
  • 2
  • 8
  • 23