SlideShare ist ein Scribd-Unternehmen logo
1 von 4
Writing your first Sencha Touch application – Part2

Till now we have seen how to create a viewport panel and dock a toolbar on top of the Panel. Lets build the rest of
the application. Ok, now we need a List and some contact information that the list will hold.
To create a list we will use the standard Ext.List component class and set properties in its configuration object. This
is how to create a list

var contactList = new Ext.List({

                                         store: store,

                                         itemTpl: itemTemplate,

                                         height:"100%"

                                  });


A list needs data to display as items and to do so we have the store property. This property defines
a Ext.data.Storeobject that holds the data and the schema that defines the structure of the data. I am using the term
schema for the data modelling because it seems to make things familiar to me.
Schema – Models and Stores
I have briefly talked about Stores above. Ext.data.Store objects are actually like your client side database. It will hold
data that our list will display. For eg. it will hold the first names and last names of the people. Now stores also define
model objects which tells the store about the structure of the data to hold. Model is the schema that I was talking
about. Every row in a store will be an item in the list. And every row in a store is a Model instance.
Both Storeand Model are part of Ext.data package. This is how to do so,

Ext.regModel('Contact', {

            fields: ['firstName', 'lastName']

});




var data = [

            {firstName: 'Pearlie', lastName: 'White'},

            {firstName: 'John', lastName: 'Suttle'},

            {firstName: 'Javier', lastName: 'Henderson'},

            {firstName: 'Young', lastName: 'Alverd'},

            {firstName: 'Pearlie', lastName: 'white'},
{firstName: 'Billy', lastName: 'Artega'},

            {firstName: 'Dona', lastName: 'Bigglker'},

            {firstName: 'Alfred', lastName: 'Blackburn'},

            {firstName: 'Trenton', lastName: 'Bollinger'},

            {firstName: 'Tom', lastName: 'Foose'}

      ];




var store = new Ext.data.Store({

            model: 'Contact',

            data: data

});


As you can see we have registered a Model with Ext.regModel() and given it a name Contact, fields specify the
name of the fields which in this case are firstName and lastName. Then I have defined a data array which holds the
data for our list. It is an array of Model objects and note that same field names have been used from our Model
registered earlier. The model and the data are then specified in the Store as you can see. I have used inline or hard-
coded data for my Store. There are other options available as well. You can load data in your store from remote
servers. You can make Ajax calls and receive XML, JSONP data and load it in your store via a Proxy. Well lets keep
this aside for now. I will come up with something that will showcase dynamic data loading using proxies.
Templates
Next thing to do is to define how your list items look like and what fields defined in the Model will actually be displayed
in each item. To do so we have to use the Ext.XTemplate class. By using it we can define a template and put custom
styles(CSS) and HTML elements that will wrap the data. This is how to do so,

var itemTemplate = new Ext.XTemplate(

                                              '<tpl for=".">',

                                                          '{firstName} {lastName}',

                                              '</tpl>'

                                  );


In our case we have defined a template that will display the firstName and lastName of the contacts. Note that I have
not used any div or custom css to style the items. The <tpl for=” . “> is for looping through the items of the data
array, for = ” . ” means that the looping will start from the root. The data array that I I have mentioned is a linear array
so there are no children, the thing that would have been in a typical XML document. To add custom styles you could
have written something like this,

var itemTemplate = new Ext.XTemplate(

                                              '<tpl for=".">',

                                                     '<div style="color:#fff;background-
color:#ff0000;">',

                                                           '{firstName} {lastName}',

                                                     '</div>',

                                              '</tpl>'

                                    );


Integrating
Now that we have our Model, Data, Store and Template ready, lets bind these to our list. This is how to do so,

 var contactList = new Ext.List({

                                           store: store,

                                           itemTpl: itemTemplate,

                                           height:"100%"

                                    });


Its simple isn’t it. Just name the store and item template objects in the properties. A height of 100% means that the
list will occupy the entire height of the application screen. Percentages are allowed.
Our list is ready now. So need to add this to our viewport panel. Remember a list is only a component. It needs to be
added to a container for display. This is how you can do it,

new Ext.Panel({

                                          fullscreen:true,

                                          layout:'fit',

                                          dockedItems:[{xtype:'toolbar', title:'Contact List'}],

                                          dock:'top',

                                          scroll:'vertical',
items:[contactList]

                                   });


Note the items property. It is an array of all the items that the panel will hold. Add your contact list object to it. That’s
it, our first Sencha Touch application is ready. Run your code and you should be able to see a list of people’s contact
information as shown below,




                                                      Sencha Touch list

Here is the link to the demo http://jbk404.site50.net/sencha/gettingstarted/. Try opening it in your iPhone. If you do not
have one try it out here http://www.iphonetester.com/.
Adding interactivity
Next thing is to add interactivity to our list. Lets say, when a user taps on one of the contact he should be able to see
more information about the person in a pop up. Lets keep this for the next part. Part3 is ready. Read it here.
Link to part 1 : http://jbkflex.wordpress.com/2011/07/30/writing-your-first-sencha-touch-application-part1/

Weitere ähnliche Inhalte

Kürzlich hochgeladen

New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 

Kürzlich hochgeladen (20)

New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 

Empfohlen

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Writing your first sencha touch application part2

  • 1. Writing your first Sencha Touch application – Part2 Till now we have seen how to create a viewport panel and dock a toolbar on top of the Panel. Lets build the rest of the application. Ok, now we need a List and some contact information that the list will hold. To create a list we will use the standard Ext.List component class and set properties in its configuration object. This is how to create a list var contactList = new Ext.List({ store: store, itemTpl: itemTemplate, height:"100%" }); A list needs data to display as items and to do so we have the store property. This property defines a Ext.data.Storeobject that holds the data and the schema that defines the structure of the data. I am using the term schema for the data modelling because it seems to make things familiar to me. Schema – Models and Stores I have briefly talked about Stores above. Ext.data.Store objects are actually like your client side database. It will hold data that our list will display. For eg. it will hold the first names and last names of the people. Now stores also define model objects which tells the store about the structure of the data to hold. Model is the schema that I was talking about. Every row in a store will be an item in the list. And every row in a store is a Model instance. Both Storeand Model are part of Ext.data package. This is how to do so, Ext.regModel('Contact', { fields: ['firstName', 'lastName'] }); var data = [ {firstName: 'Pearlie', lastName: 'White'}, {firstName: 'John', lastName: 'Suttle'}, {firstName: 'Javier', lastName: 'Henderson'}, {firstName: 'Young', lastName: 'Alverd'}, {firstName: 'Pearlie', lastName: 'white'},
  • 2. {firstName: 'Billy', lastName: 'Artega'}, {firstName: 'Dona', lastName: 'Bigglker'}, {firstName: 'Alfred', lastName: 'Blackburn'}, {firstName: 'Trenton', lastName: 'Bollinger'}, {firstName: 'Tom', lastName: 'Foose'} ]; var store = new Ext.data.Store({ model: 'Contact', data: data }); As you can see we have registered a Model with Ext.regModel() and given it a name Contact, fields specify the name of the fields which in this case are firstName and lastName. Then I have defined a data array which holds the data for our list. It is an array of Model objects and note that same field names have been used from our Model registered earlier. The model and the data are then specified in the Store as you can see. I have used inline or hard- coded data for my Store. There are other options available as well. You can load data in your store from remote servers. You can make Ajax calls and receive XML, JSONP data and load it in your store via a Proxy. Well lets keep this aside for now. I will come up with something that will showcase dynamic data loading using proxies. Templates Next thing to do is to define how your list items look like and what fields defined in the Model will actually be displayed in each item. To do so we have to use the Ext.XTemplate class. By using it we can define a template and put custom styles(CSS) and HTML elements that will wrap the data. This is how to do so, var itemTemplate = new Ext.XTemplate( '<tpl for=".">', '{firstName} {lastName}', '</tpl>' ); In our case we have defined a template that will display the firstName and lastName of the contacts. Note that I have not used any div or custom css to style the items. The <tpl for=” . “> is for looping through the items of the data
  • 3. array, for = ” . ” means that the looping will start from the root. The data array that I I have mentioned is a linear array so there are no children, the thing that would have been in a typical XML document. To add custom styles you could have written something like this, var itemTemplate = new Ext.XTemplate( '<tpl for=".">', '<div style="color:#fff;background- color:#ff0000;">', '{firstName} {lastName}', '</div>', '</tpl>' ); Integrating Now that we have our Model, Data, Store and Template ready, lets bind these to our list. This is how to do so, var contactList = new Ext.List({ store: store, itemTpl: itemTemplate, height:"100%" }); Its simple isn’t it. Just name the store and item template objects in the properties. A height of 100% means that the list will occupy the entire height of the application screen. Percentages are allowed. Our list is ready now. So need to add this to our viewport panel. Remember a list is only a component. It needs to be added to a container for display. This is how you can do it, new Ext.Panel({ fullscreen:true, layout:'fit', dockedItems:[{xtype:'toolbar', title:'Contact List'}], dock:'top', scroll:'vertical',
  • 4. items:[contactList] }); Note the items property. It is an array of all the items that the panel will hold. Add your contact list object to it. That’s it, our first Sencha Touch application is ready. Run your code and you should be able to see a list of people’s contact information as shown below, Sencha Touch list Here is the link to the demo http://jbk404.site50.net/sencha/gettingstarted/. Try opening it in your iPhone. If you do not have one try it out here http://www.iphonetester.com/. Adding interactivity Next thing is to add interactivity to our list. Lets say, when a user taps on one of the contact he should be able to see more information about the person in a pop up. Lets keep this for the next part. Part3 is ready. Read it here. Link to part 1 : http://jbkflex.wordpress.com/2011/07/30/writing-your-first-sencha-touch-application-part1/