0
votes
1answer
153 views

How to add toolbar above Ext.dataview.DataView in Sencha touch?

I have a Ext.dataview.DataView How can I add toolbar in this view ? I have tried adding it in config, but not working. My dataview got disappeared . Also tried adding toolbar in initialise(), again my ...
0
votes
2answers
341 views

sencha touch 2 dataview breaded between checkboxfield at top and button at bottom

I've this requirement of giving user provision of subscribing to certain categories. The layout which is to be designed is having - checkbox => at top toggling automatic subscription setting. ...
0
votes
1answer
160 views

ST2 ListItem setHtml can't get the value of the sub-node

I have two model 'Statuses' belongTo:'User',I'm leaning the examples of sencha touch 2 named touchtweets. here is my json file { "statuses" : [{ "text" : "test", "user" : { "name" : ...
0
votes
1answer
675 views

Add button to itemTpl sencha touch

I am new for sencha touch. I got a question.How can I add button and fire the even to item template?Please guild me solution Here is my coding ...
2
votes
1answer
475 views

Manipulating datastore data after loading

I have a backend that returns some JSON data that is used by my datastore through an ajax proxy. The data is then displayed in a dataview. What I need to do is perform some transformation on the ...
0
votes
2answers
1k views

How to filter a list in Sencha Touch 2?

I'm filtering a list of stocks by symbol, but it doesn't work. Maybe there's something wrong with the code? Something I have missed? Here are some of things I've tried: function filterBySymbol: ...
0
votes
0answers
159 views

Sencha DataView With Popups Working…how to customise it further

I wanted to share with you a modified version of Sencha Touch Kiva app that has been stripped and customised to a tiled Dataview, with modal centred popups. My next challenge is to customise it with ...
0
votes
1answer
498 views

Data validation in sencha

I am creating a model for a form which needs some validations. The model looks like this: //Defining a data structure for the Work Item List Ext.define('InfoImage.model.configure.configModel', { ...
3
votes
3answers
1k views

Sencha Touch 2 list background change

I have a list within my application, but was wondering if it is possible to have each list displayed show a different background colour, rather than the same one through out each item? I have created ...
0
votes
1answer
732 views

How can you add a TouchGridPanel to a Panel in Sencha 2?

I'm currently using the Sencha Ext.ux.TouchGridPanel, and I need to know how to add it to a Panel dynamically. Currently, I set up a store, then use a function to generate the Panel. I then use ...
2
votes
2answers
3k views

Sencha Touch DataView not showing items from Store

I'm using Sencha touch 2. I have store that load from existing js object: Ext.define('majestic.store.Dataset', { extend : 'Ext.data.Store', requires : [ 'majestic.model.Dataset', ...