1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
| Ext.require([
| 'Ext.grid.*',
| 'Ext.data.*',
| 'Ext.panel.*',
| 'Ext.layout.container.Border'
| ]);
|
| Ext.onReady(function(){
| Ext.define('Book',{
| extend: 'Ext.data.Model',
| proxy: {
| type: 'ajax',
| reader: 'xml'
| },
| fields: [
| // set up the fields mapping into the xml doc
| // The first needs mapping, the others are very basic
| {name: 'Author', mapping: '@author.name'},
| 'Title',
| 'Manufacturer',
| 'ProductGroup',
| 'DetailPageURL'
| ]
| });
|
| // create the Data Store
| var store = Ext.create('Ext.data.Store', {
| model: 'Book',
| proxy: {
| // load using HTTP
| type: 'ajax',
| url: 'sheldon.xml',
| // the return will be XML, so lets set up a reader
| reader: {
| type: 'xml',
| record: 'Item',
| totalProperty : 'total'
| }
| }
| });
|
| // create the grid
| var grid = Ext.create('Ext.grid.Panel', {
| store: store,
| columns: [
| {text: "Author", width: 120, dataIndex: 'Author', sortable: true},
| {text: "Title", flex: 1, dataIndex: 'Title', sortable: true},
| {text: "Manufacturer", width: 125, dataIndex: 'Manufacturer', sortable: true},
| {text: "Product Group", width: 125, dataIndex: 'ProductGroup', sortable: true}
| ],
| forceFit: true,
| height:210,
| split: true,
| region: 'north'
| });
|
| // define a template to use for the detail view
| var bookTplMarkup = [
| 'Title: <a href="{DetailPageURL}" target="_blank">{Title}</a><br/>',
| 'Author: {Author}<br/>',
| 'Manufacturer: {Manufacturer}<br/>',
| 'Product Group: {ProductGroup}<br/>'
| ];
| var bookTpl = Ext.create('Ext.Template', bookTplMarkup);
|
| Ext.create('Ext.Panel', {
| renderTo: 'binding-example',
| frame: true,
| title: 'Book List',
| width: 580,
| height: 400,
| layout: 'border',
| items: [
| grid, {
| id: 'detailPanel',
| region: 'center',
| bodyPadding: 7,
| bodyStyle: "background: #ffffff;",
| html: 'Please select a book to see additional details.'
| }]
| });
|
| // update panel body on selection change
| grid.getSelectionModel().on('selectionchange', function(sm, selectedRecord) {
| if (selectedRecord.length) {
| var detailPanel = Ext.getCmp('detailPanel');
| detailPanel.update(bookTpl.apply(selectedRecord[0].data));
| }
| });
|
| store.load();
| });
|
|