Paging.html
20.2 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The source code</title>
<link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
<script type="text/javascript" src="../resources/prettify/prettify.js"></script>
<style type="text/css">
.highlight { display: block; background-color: #ddd; }
</style>
<script type="text/javascript">
function highlight() {
document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
}
</script>
</head>
<body onload="prettyPrint(); highlight();">
<pre class="prettyprint lang-js"><span id='Ext-toolbar-Paging'>/**
</span> * As the number of records increases, the time required for the browser to render them increases. Paging is used to
* reduce the amount of data exchanged with the client. Note: if there are more records/rows than can be viewed in the
* available screen area, vertical scrollbars will be added.
*
* Paging is typically handled on the server side (see exception below). The client sends parameters to the server side,
* which the server needs to interpret and then respond with the appropriate data.
*
* Ext.toolbar.Paging is a specialized toolbar that is bound to a {@link Ext.data.Store} and provides automatic
* paging control. This Component {@link Ext.data.Store#method-load load}s blocks of data into the {@link #store} by passing
* parameters used for paging criteria.
*
* {@img Ext.toolbar.Paging/Ext.toolbar.Paging.png Ext.toolbar.Paging component}
*
* Paging Toolbar is typically used as one of the Grid's toolbars:
*
* @example
* var itemsPerPage = 2; // set the number of items you want per page
*
* var store = Ext.create('Ext.data.Store', {
* id:'simpsonsStore',
* autoLoad: false,
* fields:['name', 'email', 'phone'],
* pageSize: itemsPerPage, // items per page
* proxy: {
* type: 'ajax',
* url: 'pagingstore.js', // url that will load data with respect to start and limit params
* reader: {
* type: 'json',
* root: 'items',
* totalProperty: 'total'
* }
* }
* });
*
* // specify segment of data you want to load using params
* store.load({
* params:{
* start:0,
* limit: itemsPerPage
* }
* });
*
* Ext.create('Ext.grid.Panel', {
* title: 'Simpsons',
* store: store,
* columns: [
* { header: 'Name', dataIndex: 'name' },
* { header: 'Email', dataIndex: 'email', flex: 1 },
* { header: 'Phone', dataIndex: 'phone' }
* ],
* width: 400,
* height: 125,
* dockedItems: [{
* xtype: 'pagingtoolbar',
* store: store, // same store GridPanel is using
* dock: 'bottom',
* displayInfo: true
* }],
* renderTo: Ext.getBody()
* });
*
* To use paging, you need to set a pageSize configuration on the Store, and pass the paging requirements to
* the server when the store is first loaded.
*
* store.load({
* params: {
* // specify params for the first page load if using paging
* start: 0,
* limit: myPageSize,
* // other params
* foo: 'bar'
* }
* });
*
* If using {@link Ext.data.Store#autoLoad store's autoLoad} configuration:
*
* var myStore = Ext.create('Ext.data.Store', {
* {@link Ext.data.Store#autoLoad autoLoad}: {start: 0, limit: 25},
* ...
* });
*
* The packet sent back from the server would have this form:
*
* {
* "success": true,
* "results": 2000,
* "rows": [ // ***Note:** this must be an Array
* { "id": 1, "name": "Bill", "occupation": "Gardener" },
* { "id": 2, "name": "Ben", "occupation": "Horticulturalist" },
* ...
* { "id": 25, "name": "Sue", "occupation": "Botanist" }
* ]
* }
*
* ## Paging with Local Data
*
* Paging can also be accomplished with local data using extensions:
*
* - [Ext.ux.data.PagingStore][1]
* - Paging Memory Proxy (examples/ux/PagingMemoryProxy.js)
*
* [1]: http://sencha.com/forum/showthread.php?t=71532
*/
Ext.define('Ext.toolbar.Paging', {
extend: 'Ext.toolbar.Toolbar',
alias: 'widget.pagingtoolbar',
alternateClassName: 'Ext.PagingToolbar',
requires: ['Ext.toolbar.TextItem', 'Ext.form.field.Number'],
mixins: {
bindable: 'Ext.util.Bindable'
},
<span id='Ext-toolbar-Paging-cfg-store'> /**
</span> * @cfg {Ext.data.Store} store (required)
* The {@link Ext.data.Store} the paging toolbar should use as its data source.
*/
<span id='Ext-toolbar-Paging-cfg-displayInfo'> /**
</span> * @cfg {Boolean} displayInfo
* true to display the displayMsg
*/
displayInfo: false,
<span id='Ext-toolbar-Paging-cfg-prependButtons'> /**
</span> * @cfg {Boolean} prependButtons
* true to insert any configured items _before_ the paging buttons.
*/
prependButtons: false,
//<locale>
<span id='Ext-toolbar-Paging-cfg-displayMsg'> /**
</span> * @cfg {String} displayMsg
* The paging status message to display. Note that this string is
* formatted using the braced numbers {0}-{2} as tokens that are replaced by the values for start, end and total
* respectively. These tokens should be preserved when overriding this string if showing those values is desired.
*/
displayMsg : 'Displaying {0} - {1} of {2}',
//</locale>
//<locale>
<span id='Ext-toolbar-Paging-cfg-emptyMsg'> /**
</span> * @cfg {String} emptyMsg
* The message to display when no records are found.
*/
emptyMsg : 'No data to display',
//</locale>
//<locale>
<span id='Ext-toolbar-Paging-cfg-beforePageText'> /**
</span> * @cfg {String} beforePageText
* The text displayed before the input item.
*/
beforePageText : 'Page',
//</locale>
//<locale>
<span id='Ext-toolbar-Paging-cfg-afterPageText'> /**
</span> * @cfg {String} afterPageText
* Customizable piece of the default paging text. Note that this string is formatted using
* {0} as a token that is replaced by the number of total pages. This token should be preserved when overriding this
* string if showing the total page count is desired.
*/
afterPageText : 'of {0}',
//</locale>
//<locale>
<span id='Ext-toolbar-Paging-cfg-firstText'> /**
</span> * @cfg {String} firstText
* The quicktip text displayed for the first page button.
* **Note**: quick tips must be initialized for the quicktip to show.
*/
firstText : 'First Page',
//</locale>
//<locale>
<span id='Ext-toolbar-Paging-cfg-prevText'> /**
</span> * @cfg {String} prevText
* The quicktip text displayed for the previous page button.
* **Note**: quick tips must be initialized for the quicktip to show.
*/
prevText : 'Previous Page',
//</locale>
//<locale>
<span id='Ext-toolbar-Paging-cfg-nextText'> /**
</span> * @cfg {String} nextText
* The quicktip text displayed for the next page button.
* **Note**: quick tips must be initialized for the quicktip to show.
*/
nextText : 'Next Page',
//</locale>
//<locale>
<span id='Ext-toolbar-Paging-cfg-lastText'> /**
</span> * @cfg {String} lastText
* The quicktip text displayed for the last page button.
* **Note**: quick tips must be initialized for the quicktip to show.
*/
lastText : 'Last Page',
//</locale>
//<locale>
<span id='Ext-toolbar-Paging-cfg-refreshText'> /**
</span> * @cfg {String} refreshText
* The quicktip text displayed for the Refresh button.
* **Note**: quick tips must be initialized for the quicktip to show.
*/
refreshText : 'Refresh',
//</locale>
<span id='Ext-toolbar-Paging-cfg-inputItemWidth'> /**
</span> * @cfg {Number} inputItemWidth
* The width in pixels of the input field used to display and change the current page number.
*/
inputItemWidth : 30,
<span id='Ext-toolbar-Paging-method-getPagingItems'> /**
</span> * Gets the standard paging items in the toolbar
* @private
*/
getPagingItems: function() {
var me = this;
return [{
itemId: 'first',
tooltip: me.firstText,
overflowText: me.firstText,
iconCls: Ext.baseCSSPrefix + 'tbar-page-first',
disabled: true,
handler: me.moveFirst,
scope: me
},{
itemId: 'prev',
tooltip: me.prevText,
overflowText: me.prevText,
iconCls: Ext.baseCSSPrefix + 'tbar-page-prev',
disabled: true,
handler: me.movePrevious,
scope: me
},
'-',
me.beforePageText,
{
xtype: 'numberfield',
itemId: 'inputItem',
name: 'inputItem',
cls: Ext.baseCSSPrefix + 'tbar-page-number',
allowDecimals: false,
minValue: 1,
hideTrigger: true,
enableKeyEvents: true,
keyNavEnabled: false,
selectOnFocus: true,
submitValue: false,
// mark it as not a field so the form will not catch it when getting fields
isFormField: false,
width: me.inputItemWidth,
margins: '-1 2 3 2',
listeners: {
scope: me,
keydown: me.onPagingKeyDown,
blur: me.onPagingBlur
}
},{
xtype: 'tbtext',
itemId: 'afterTextItem',
text: Ext.String.format(me.afterPageText, 1)
},
'-',
{
itemId: 'next',
tooltip: me.nextText,
overflowText: me.nextText,
iconCls: Ext.baseCSSPrefix + 'tbar-page-next',
disabled: true,
handler: me.moveNext,
scope: me
},{
itemId: 'last',
tooltip: me.lastText,
overflowText: me.lastText,
iconCls: Ext.baseCSSPrefix + 'tbar-page-last',
disabled: true,
handler: me.moveLast,
scope: me
},
'-',
{
itemId: 'refresh',
tooltip: me.refreshText,
overflowText: me.refreshText,
iconCls: Ext.baseCSSPrefix + 'tbar-loading',
handler: me.doRefresh,
scope: me
}];
},
initComponent : function(){
var me = this,
pagingItems = me.getPagingItems(),
userItems = me.items || me.buttons || [];
if (me.prependButtons) {
me.items = userItems.concat(pagingItems);
} else {
me.items = pagingItems.concat(userItems);
}
delete me.buttons;
if (me.displayInfo) {
me.items.push('->');
me.items.push({xtype: 'tbtext', itemId: 'displayItem'});
}
me.callParent();
me.addEvents(
<span id='Ext-toolbar-Paging-event-change'> /**
</span> * @event change
* Fires after the active page has been changed.
* @param {Ext.toolbar.Paging} this
* @param {Object} pageData An object that has these properties:
*
* - `total` : Number
*
* The total number of records in the dataset as returned by the server
*
* - `currentPage` : Number
*
* The current page number
*
* - `pageCount` : Number
*
* The total number of pages (calculated from the total number of records in the dataset as returned by the
* server and the current {@link Ext.data.Store#pageSize pageSize})
*
* - `toRecord` : Number
*
* The starting record index for the current page
*
* - `fromRecord` : Number
*
* The ending record index for the current page
*/
'change',
<span id='Ext-toolbar-Paging-event-beforechange'> /**
</span> * @event beforechange
* Fires just before the active page is changed. Return false to prevent the active page from being changed.
* @param {Ext.toolbar.Paging} this
* @param {Number} page The page number that will be loaded on change
*/
'beforechange'
);
me.on('beforerender', me.onLoad, me, {single: true});
me.bindStore(me.store || 'ext-empty-store', true);
},
// private
updateInfo : function(){
var me = this,
displayItem = me.child('#displayItem'),
store = me.store,
pageData = me.getPageData(),
count, msg;
if (displayItem) {
count = store.getCount();
if (count === 0) {
msg = me.emptyMsg;
} else {
msg = Ext.String.format(
me.displayMsg,
pageData.fromRecord,
pageData.toRecord,
pageData.total
);
}
displayItem.setText(msg);
}
},
// private
onLoad : function(){
var me = this,
pageData,
currPage,
pageCount,
afterText,
count,
isEmpty;
count = me.store.getCount();
isEmpty = count === 0;
if (!isEmpty) {
pageData = me.getPageData();
currPage = pageData.currentPage;
pageCount = pageData.pageCount;
afterText = Ext.String.format(me.afterPageText, isNaN(pageCount) ? 1 : pageCount);
} else {
currPage = 0;
pageCount = 0;
afterText = Ext.String.format(me.afterPageText, 0);
}
Ext.suspendLayouts();
me.child('#afterTextItem').setText(afterText);
me.child('#inputItem').setDisabled(isEmpty).setValue(currPage);
me.child('#first').setDisabled(currPage === 1 || isEmpty);
me.child('#prev').setDisabled(currPage === 1 || isEmpty);
me.child('#next').setDisabled(currPage === pageCount || isEmpty);
me.child('#last').setDisabled(currPage === pageCount || isEmpty);
me.child('#refresh').enable();
me.updateInfo();
Ext.resumeLayouts(true);
if (me.rendered) {
me.fireEvent('change', me, pageData);
}
},
// private
getPageData : function(){
var store = this.store,
totalCount = store.getTotalCount();
return {
total : totalCount,
currentPage : store.currentPage,
pageCount: Math.ceil(totalCount / store.pageSize),
fromRecord: ((store.currentPage - 1) * store.pageSize) + 1,
toRecord: Math.min(store.currentPage * store.pageSize, totalCount)
};
},
// private
onLoadError : function(){
if (!this.rendered) {
return;
}
this.child('#refresh').enable();
},
// private
readPageFromInput : function(pageData){
var v = this.child('#inputItem').getValue(),
pageNum = parseInt(v, 10);
if (!v || isNaN(pageNum)) {
this.child('#inputItem').setValue(pageData.currentPage);
return false;
}
return pageNum;
},
onPagingFocus : function(){
this.child('#inputItem').select();
},
//private
onPagingBlur : function(e){
var curPage = this.getPageData().currentPage;
this.child('#inputItem').setValue(curPage);
},
// private
onPagingKeyDown : function(field, e){
var me = this,
k = e.getKey(),
pageData = me.getPageData(),
increment = e.shiftKey ? 10 : 1,
pageNum;
if (k == e.RETURN) {
e.stopEvent();
pageNum = me.readPageFromInput(pageData);
if (pageNum !== false) {
pageNum = Math.min(Math.max(1, pageNum), pageData.pageCount);
if(me.fireEvent('beforechange', me, pageNum) !== false){
me.store.loadPage(pageNum);
}
}
} else if (k == e.HOME || k == e.END) {
e.stopEvent();
pageNum = k == e.HOME ? 1 : pageData.pageCount;
field.setValue(pageNum);
} else if (k == e.UP || k == e.PAGE_UP || k == e.DOWN || k == e.PAGE_DOWN) {
e.stopEvent();
pageNum = me.readPageFromInput(pageData);
if (pageNum) {
if (k == e.DOWN || k == e.PAGE_DOWN) {
increment *= -1;
}
pageNum += increment;
if (pageNum >= 1 && pageNum <= pageData.pageCount) {
field.setValue(pageNum);
}
}
}
},
// private
beforeLoad : function(){
if(this.rendered && this.refresh){
this.refresh.disable();
}
},
<span id='Ext-toolbar-Paging-method-moveFirst'> /**
</span> * Move to the first page, has the same effect as clicking the 'first' button.
*/
moveFirst : function(){
if (this.fireEvent('beforechange', this, 1) !== false){
this.store.loadPage(1);
}
},
<span id='Ext-toolbar-Paging-method-movePrevious'> /**
</span> * Move to the previous page, has the same effect as clicking the 'previous' button.
*/
movePrevious : function(){
var me = this,
prev = me.store.currentPage - 1;
if (prev > 0) {
if (me.fireEvent('beforechange', me, prev) !== false) {
me.store.previousPage();
}
}
},
<span id='Ext-toolbar-Paging-method-moveNext'> /**
</span> * Move to the next page, has the same effect as clicking the 'next' button.
*/
moveNext : function(){
var me = this,
total = me.getPageData().pageCount,
next = me.store.currentPage + 1;
if (next <= total) {
if (me.fireEvent('beforechange', me, next) !== false) {
me.store.nextPage();
}
}
},
<span id='Ext-toolbar-Paging-method-moveLast'> /**
</span> * Move to the last page, has the same effect as clicking the 'last' button.
*/
moveLast : function(){
var me = this,
last = me.getPageData().pageCount;
if (me.fireEvent('beforechange', me, last) !== false) {
me.store.loadPage(last);
}
},
<span id='Ext-toolbar-Paging-method-doRefresh'> /**
</span> * Refresh the current page, has the same effect as clicking the 'refresh' button.
*/
doRefresh : function(){
var me = this,
current = me.store.currentPage;
if (me.fireEvent('beforechange', me, current) !== false) {
me.store.loadPage(current);
}
},
getStoreListeners: function() {
return {
beforeload: this.beforeLoad,
load: this.onLoad,
exception: this.onLoadError
};
},
<span id='Ext-toolbar-Paging-method-unbind'> /**
</span> * Unbinds the paging toolbar from the specified {@link Ext.data.Store} **(deprecated)**
* @param {Ext.data.Store} store The data store to unbind
*/
unbind : function(store){
this.bindStore(null);
},
<span id='Ext-toolbar-Paging-method-bind'> /**
</span> * Binds the paging toolbar to the specified {@link Ext.data.Store} **(deprecated)**
* @param {Ext.data.Store} store The data store to bind
*/
bind : function(store){
this.bindStore(store);
},
// private
onDestroy : function(){
this.unbind();
this.callParent();
}
});
</pre>
</body>
</html>