-
27 Sep 2010 8:39 PM #1
Sencha Touch - List
Sencha Touch - List
How do I create List? Any sample example.
-
27 Sep 2010 9:40 PM #2
There's examples of all the components, look under /examples in the download.
Evan Trimboli
Sencha Developer
Twitter - @evantrimboli
Don't be afraid of the source code!
-
24 Feb 2012 9:45 AM #3
List Example
List Example
Check this out:
var list = new Ext.List({
itemTpl: '<div class="page">{title}</div>',
ui: 'round',
store: new Ext.data.Store({
fields: ['name', 'card'],
data: this.pages
}),
listeners: {
selectionchange: {fn: this.onSelect, scope: this}
},
title: 'Some title here'
});
Then you can add it into a panel:
var listPanel = new Ext.Panel({
title: 'Some title',
items: list,
layout: 'fit'
});
Hope I could help! Good luck!
-
5 Mar 2012 12:01 AM #4
sencha touch list
sencha touch list
can any one please create a static list using sencha touch and give it to me its damm urgent plzzz......
-
5 Mar 2012 12:04 AM #5
hi riaz do u have sound knowledge in sencha touch plzz help me out its very urgent
Similar Threads
-
Is Sencha working on native wrappers to package Sencha Touch apps for app stores?
By olin in forum Sencha Touch 1.x: DiscussionReplies: 10Last Post: 20 Jan 2012, 10:10 AM -
Sencha Touch on iPhone v1 / iPod touch v1 ?
By palnap in forum Sencha Touch 1.x: DiscussionReplies: 4Last Post: 28 Oct 2010, 5:30 PM -
[CLOSED-267] Sencha Touch API docs lacking some "Sencha Platform" content?
By charris in forum Sencha Touch 1.x: BugsReplies: 2Last Post: 9 Sep 2010, 10:24 AM -
sencha touch list store problem
By reminder in forum Sencha Touch 1.x: DiscussionReplies: 1Last Post: 27 Jun 2010, 11:33 AM



Reply With Quote