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.Store object 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.


