13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
<!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-selection-Model'>/**
</span> * Tracks what records are currently selected in a databound component.
 *
 * This is an abstract class and is not meant to be directly used. Databound UI widgets such as
 * {@link Ext.grid.Panel Grid} and {@link Ext.tree.Panel Tree} should subclass Ext.selection.Model
 * and provide a way to binding to the component.
 *
 * The abstract methods `onSelectChange` and `onLastFocusChanged` should be implemented in these
 * subclasses to update the UI widget.
 */
Ext.define('Ext.selection.Model', {
    extend: 'Ext.util.Observable',
    alternateClassName: 'Ext.AbstractSelectionModel',
    requires: ['Ext.data.StoreManager'],
    mixins: {
        bindable: 'Ext.util.Bindable'    
    },
    // lastSelected
 
<span id='Ext-selection-Model-cfg-mode'>    /**
</span>     * @cfg {&quot;SINGLE&quot;/&quot;SIMPLE&quot;/&quot;MULTI&quot;} mode
     * Mode of selection.  Valid values are:
     *
     * - **&quot;SINGLE&quot;** - Only allows selecting one item at a time.  Use {@link #allowDeselect} to allow
     *   deselecting that item.  Also see {@link #toggleOnClick}. This is the default.
     * - **&quot;SIMPLE&quot;** - Allows simple selection of multiple items one-by-one. Each click in grid will either
     *   select or deselect an item.
     * - **&quot;MULTI&quot;** - Allows complex selection of multiple items using Ctrl and Shift keys.
     */
 
<span id='Ext-selection-Model-cfg-allowDeselect'>    /**
</span>     * @cfg {Boolean} allowDeselect
     * Allow users to deselect a record in a DataView, List or Grid.
     * Only applicable when the {@link #mode} is 'SINGLE'.
     */
    allowDeselect: undefined,
    
<span id='Ext-selection-Model-cfg-toggleOnClick'>    /**
</span>     * @cfg {Boolean} toggleOnClick
     * `true` to toggle the selection state of an item when clicked.
     * Only applicable when the {@link #mode} is 'SINGLE'.
     * Only applicable when the {@link #allowDeselect} is 'true'.
     */
    toggleOnClick: true,
 
<span id='Ext-selection-Model-property-selected'>    /**
</span>     * @property {Ext.util.MixedCollection} [selected=undefined]
     * A MixedCollection that maintains all of the currently selected records.
     * @readonly
     */
    selected: null,
 
<span id='Ext-selection-Model-cfg-pruneRemoved'>    /**
</span>     * @cfg {Boolean} [pruneRemoved=true]
     * Remove records from the selection when they are removed from the store.
     *
     * **Important:** When using {@link Ext.toolbar.Paging paging} or a {@link Ext.data.Store#buffered sparsely populated (buffered) Store},
     * records which are cached in the Store's {@link Ext.data.Store#property-data data collection} may be removed from the Store when pages change,
     * or when rows are scrolled out of view. For this reason `pruneRemoved` should be set to `false` when using a buffered Store.
     *
     * Also, when previously pruned pages are returned to the cache, the records objects in the page will be
     * *new instances*, and will not match the instances in the selection model's collection. For this reason,
     * you MUST ensure that the Model definition's {@link Ext.data.Model#idProperty idProperty} references a unique
     * key because in this situation, records in the Store have their **IDs** compared to records in the SelectionModel
     * in order to re-select a record which is scrolled back into view.
     */
    pruneRemoved: true,
    
<span id='Ext-selection-Model-property-suspendChange'>    suspendChange: 0,
</span>
<span id='Ext-selection-Model-method-constructor'>    constructor: function(cfg) {
</span>        var me = this;
 
        cfg = cfg || {};
        Ext.apply(me, cfg);
 
        me.addEvents(
<span id='Ext-selection-Model-event-selectionchange'>            /**
</span>             * @event
             * Fired after a selection change has occurred
             * @param {Ext.selection.Model} this
             * @param {Ext.data.Model[]} selected The selected records
             */
            'selectionchange',
<span id='Ext-selection-Model-event-focuschange'>            /**
</span>             * @event
             * Fired when a row is focused
             * @param {Ext.selection.Model} this
             * @param {Ext.data.Model} oldFocused The previously focused record
             * @param {Ext.data.Model} newFocused The newly focused record
             */
            'focuschange'
        );
 
        me.modes = {
            SINGLE: true,
            SIMPLE: true,
            MULTI: true
        };
 
        // sets this.selectionMode
        me.setSelectionMode(cfg.mode || me.mode);
 
        // maintains the currently selected records.
        me.selected = new Ext.util.MixedCollection(null, me.getSelectionId);
 
        me.callParent(arguments);
    },
 
<span id='Ext-selection-Model-method-bindStore'>    // binds the store to the selModel.
</span>    bindStore: function(store, initial){
        var me = this;
        me.mixins.bindable.bindStore.apply(me, arguments);
        if(me.store &amp;&amp; !initial) {
            me.refresh();
        }
    },
 
<span id='Ext-selection-Model-method-getStoreListeners'>    getStoreListeners: function() {
</span>        var me = this;
        return {
            add: me.onStoreAdd,
            clear: me.onStoreClear,
            bulkremove: me.onStoreRemove,
            update: me.onStoreUpdate,
            load: me.onStoreLoad,
            idchanged: me.onModelIdChanged,
            refresh: me.onStoreRefresh
        };
    },
    
<span id='Ext-selection-Model-method-suspendChanges'>    suspendChanges: function(){
</span>        ++this.suspendChange;
    },
    
<span id='Ext-selection-Model-method-resumeChanges'>    resumeChanges: function(){
</span>        if (this.suspendChange) {
            --this.suspendChange;
        }
    },
 
<span id='Ext-selection-Model-method-selectAll'>    /**
</span>     * Selects all records in the view.
     * @param {Boolean} suppressEvent True to suppress any select events
     */
    selectAll: function(suppressEvent) {
        var me = this,
            selections = me.store.getRange(),
            i = 0,
            len = selections.length,
            start = me.getSelection().length;
 
        me.suspendChanges();
        for (; i &lt; len; i++) {
            me.doSelect(selections[i], true, suppressEvent);
        }
        me.resumeChanges();
        // fire selection change only if the number of selections differs
        if (!suppressEvent) {
            me.maybeFireSelectionChange(me.getSelection().length !== start);
        }
    },
 
<span id='Ext-selection-Model-method-deselectAll'>    /**
</span>     * Deselects all records in the view.
     * @param {Boolean} [suppressEvent] True to suppress any deselect events
     */
    deselectAll: function(suppressEvent) {
        var me = this,
            selections = me.getSelection(),
            selIndexes = {},
            store = me.store,
            start = selections.length,
            i, l, rec;
 
        // Cache selection records' indexes first to avoid
        // looking them up on every sort comparison below.
        // We can't rely on store.indexOf being fast because
        // for whatever reason the Store in question may force
        // sequential index lookup, which will result in O(n^2)
        // sort performance below.
        for (i = 0, l = selections.length; i &lt; l; i++) {
            rec = selections[i];
            
            selIndexes[rec.internalId] = store.indexOf(rec);
        }
        
        // Sort the selections so that the events fire in
        // a predictable order like selectAll
        selections = Ext.Array.sort(selections, function(r1, r2){
            var idx1 = selIndexes[r1.internalId],
                idx2 = selIndexes[r2.internalId];
            
            // Don't check for equality since indexes will be unique
            return idx1 &lt; idx2 ? -1 : 1;
        });
        
        me.suspendChanges();
        me.doDeselect(selections, suppressEvent);
        me.resumeChanges();
        // fire selection change only if the number of selections differs
        if (!suppressEvent) {
            me.maybeFireSelectionChange(me.getSelection().length !== start);
        }
    },
 
<span id='Ext-selection-Model-method-selectWithEvent'>    // Provides differentiation of logic between MULTI, SIMPLE and SINGLE
</span>    // selection modes. Requires that an event be passed so that we can know
    // if user held ctrl or shift.
    selectWithEvent: function(record, e) {
        var me = this,
            isSelected = me.isSelected(record),
            shift = e.shiftKey,
            ctrl = e.ctrlKey,
            start = me.selectionStart,
            selected = me.getSelection(),
            len = selected.length,
            allowDeselect = me.allowDeselect,
            toDeselect, i, item;
 
        switch (me.selectionMode) {
            case 'MULTI':
                if (shift &amp;&amp; start) {
                    me.selectRange(start, record, ctrl);
                } else if (ctrl &amp;&amp; isSelected) {
                    me.doDeselect(record, false);
                } else if (ctrl) {
                    me.doSelect(record, true, false);
                } else if (isSelected &amp;&amp; !shift &amp;&amp; !ctrl &amp;&amp; len &gt; 1) {
                    toDeselect = [];
                    
                    for (i = 0; i &lt; len; ++i) {
                        item = selected[i];
                        if (item !== record) {
                            toDeselect.push(item);    
                        }
                    }
                    
                    me.doDeselect(toDeselect);
                } else if (!isSelected) {
                    me.doSelect(record, false);
                }
                break;
            case 'SIMPLE':
                if (isSelected) {
                    me.doDeselect(record);
                } else {
                    me.doSelect(record, true);
                }
                break;
            case 'SINGLE':
                if (allowDeselect &amp;&amp; !ctrl) {
                    allowDeselect = me.toggleOnClick;
                }
                if (allowDeselect &amp;&amp; isSelected) {
                    me.doDeselect(record);
                } else {
                    me.doSelect(record, false);
                }
                break;
        }
 
        // selectionStart is a start point for shift/mousedown to create a range from.
        // If the mousedowned record was not already selected, then it becomes the
        // start of any range created from now on.
        // If we drop to no records selected, then there is no range start any more.
        if (!shift) {
            if (me.isSelected(record)) {
                me.selectionStart = record;
            } else {
                me.selectionStart = null;
            }
        }
    },
 
<span id='Ext-selection-Model-method-afterKeyNavigate'>    // Private
</span>    // Called after a new record has been navigated to by a keystroke.
    // Event is passed so that shift and ctrl can be handled.
    afterKeyNavigate: function(e, record) {
        var me = this,
            recIdx,
            fromIdx,
            isSelected = me.isSelected(record),
            from = (me.selectionStart &amp;&amp; me.isSelected(me.lastFocused)) ? me.selectionStart : (me.selectionStart = me.lastFocused),
            key = e.getCharCode(),
            isSpace = key === e.SPACE,
            direction = key === e.UP || key === e.PAGE_UP ? 'up' : (key === e.DOWN || key === e.DOWN ? 'down' : null);
 
        switch (me.selectionMode) {
            case 'MULTI':
 
                if (isSpace) {
                    // SHIFT+SPACE, select range
                    if (e.shiftKey) {
                        me.selectRange(from, record, e.ctrlKey);
                    } else {
                        // SPACE pessed on a selected item: deselect but leave it focused.
                        // e.ctrlKey means &quot;keep existing&quot;
                        if (isSelected) {
                            me.doDeselect(record, e.ctrlKey);
 
                            // This record is already focused. To get the focus effect put on it (as opposed to selected)
                            // we have to focus null first.
                            me.setLastFocused(null);
                            me.setLastFocused(record);
                        }
                        // SPACE on an unselected item: select it
                        else {
                            me.doSelect(record, e.ctrlKey);
                        }
                    }
                }
 
                // SHIFT-navigate selects intervening rows from the last selected (or last focused) item and target item
                else if (e.shiftKey &amp;&amp; from) {
 
                    // If we are going back *into* the selected range, we deselect.
                    fromIdx = me.store.indexOf(from);
                    recIdx = me.store.indexOf(record);
 
                    // If we are heading back TOWARDS the start rec - deselect skipped range...
                    if (direction === 'up' &amp;&amp; fromIdx &lt;= recIdx) {
                        me.deselectRange(me.lastFocused, recIdx + 1);
                    }
                    else if (direction === 'down' &amp;&amp; fromIdx &gt;= recIdx) {
                        me.deselectRange(me.lastFocused, recIdx - 1);
                    }
 
                    // If we are heading AWAY from start point, or no CTRL key, so just select the range and let the CTRL control &quot;keepExisting&quot;...
                    else if (from !== record) {
                        me.selectRange(from, record, e.ctrlKey);
                    }
                    me.lastSelected = record;
                    me.setLastFocused(record);
                }
 
                // CTRL-navigate onto a selected item just focuses it
                else if (e.ctrlKey &amp;&amp; isSelected) {
                    me.setLastFocused(record);
                }
 
                // CTRL-navigate, just move focus
                else if (e.ctrlKey) {
                    me.setLastFocused(record);
                }
 
                // Just navigation - select the target
                else {
                    me.doSelect(record, false);
                }
                break;
            case 'SIMPLE':
                if (isSelected) {
                    me.doDeselect(record);
                } else {
                    me.doSelect(record, true);
                }
                break;
            case 'SINGLE':
                // Space hit
                if (isSpace) {
                    if (isSelected) {
                        me.doDeselect(record);
                        me.setLastFocused(record);
                    } else {
                        me.doSelect(record);
                    }
                }
 
                // CTRL-navigation: just move focus
                else if (e.ctrlKey) {
                    me.setLastFocused(record);
                }
 
                // if allowDeselect is on and this record isSelected, deselect it
                else if (me.allowDeselect &amp;&amp; isSelected) {
                    me.doDeselect(record);
                }
 
                // select the record and do NOT maintain existing selections
                else {
                    me.doSelect(record, false);
                }
                break;
        }
 
        // selectionStart is a start point for shift/mousedown to create a range from.
        // If the mousedowned record was not already selected, then it becomes the
        // start of any range created from now on.
        // If we drop to no records selected, then there is no range start any more.
        if (!e.shiftKey) {
            if (me.isSelected(record)) {
                me.selectionStart = record;
            }
        }
    },
 
<span id='Ext-selection-Model-method-selectRange'>    /**
</span>     * Selects a range of rows if the selection model {@link #isLocked is not locked}.
     * All rows in between startRow and endRow are also selected.
     * @param {Ext.data.Model/Number} startRow The record or index of the first row in the range
     * @param {Ext.data.Model/Number} endRow The record or index of the last row in the range
     * @param {Boolean} keepExisting (optional) True to retain existing selections
     */
    selectRange : function(startRow, endRow, keepExisting) {
        var me = this,
            store = me.store,
            selected = me.selected.items,
            result, i, len, toSelect, toDeselect, idx, rec;
 
        if (me.isLocked()){
            return;
        }
 
        result = me.normalizeRowRange(startRow, endRow);
        startRow = result[0];
        endRow = result[1];
 
        toSelect = [];
        for (i = startRow; i &lt;= endRow; i++){
            if (!me.isSelected(store.getAt(i))) {
                toSelect.push(store.getAt(i));
            }
        }
        
        if (!keepExisting) {
            // prevent selectionchange from firing
            toDeselect = [];
            me.suspendChanges();
            
            for (i = 0, len = selected.length; i &lt; len; ++i) {
                rec = selected[i];
                idx = store.indexOf(rec);
                if (idx &lt; startRow || idx &gt; endRow) {
                    toDeselect.push(rec)
                }
            }
            
            for (i = 0, len = toDeselect.length; i &lt; len; ++i) {
                me.doDeselect(toDeselect[i]);
            }
            me.resumeChanges();
        }
        
        me.doMultiSelect(toSelect, true);
    },
 
<span id='Ext-selection-Model-method-deselectRange'>    /**
</span>     * Deselects a range of rows if the selection model {@link #isLocked is not locked}.
     * @param {Ext.data.Model/Number} startRow The record or index of the first row in the range
     * @param {Ext.data.Model/Number} endRow The record or index of the last row in the range
     */
    deselectRange : function(startRow, endRow) {
        var me = this,
            store = me.store,
            result, i, toDeselect, record;
 
        if (me.isLocked()){
            return;
        }
 
        result = me.normalizeRowRange(startRow, endRow);
        startRow = result[0];
        endRow = result[1];
 
        toDeselect = [];
        for (i = startRow; i &lt;= endRow; i++) {
            record = store.getAt(i);
            if (me.isSelected(record)) {
                toDeselect.push(record);
            }
        }
        me.doDeselect(toDeselect);
    },
    
<span id='Ext-selection-Model-method-normalizeRowRange'>    normalizeRowRange: function(startRow, endRow) {
</span>        var store = this.store,
            tmp;
        
        if (!Ext.isNumber(startRow)) {
            startRow = store.indexOf(startRow);
        }
        startRow = Math.max(0, startRow);
        
        if (!Ext.isNumber(endRow)) {
            endRow = store.indexOf(endRow);
        }
        endRow = Math.min(endRow, store.getCount() - 1);
        
        // swap values
        if (startRow &gt; endRow){
            tmp = endRow;
            endRow = startRow;
            startRow = tmp;
        }    
        
        return [startRow, endRow];
    },
 
<span id='Ext-selection-Model-method-onModelIdChanged'>    onModelIdChanged: function(store, model, oldId, newId, oldInternalId) {
</span>        this.selected.updateKey(oldInternalId, newId);
    },
 
<span id='Ext-selection-Model-method-select'>    /**
</span>     * Selects a record instance by record instance or index.
     * @param {Ext.data.Model[]/Number} records An array of records or an index
     * @param {Boolean} [keepExisting=false] True to retain existing selections
     * @param {Boolean} [suppressEvent=false] True to not fire a select event
     */
    select: function(records, keepExisting, suppressEvent) {
        // Automatically selecting eg store.first() or store.last() will pass undefined, so that must just return;
        if (Ext.isDefined(records)) {
            this.doSelect(records, keepExisting, suppressEvent);
        }
    },
 
<span id='Ext-selection-Model-method-deselect'>    /**
</span>     * Deselects a record instance by record instance or index.
     * @param {Ext.data.Model[]/Number} records An array of records or an index
     * @param {Boolean} [suppressEvent=false] True to not fire a deselect event
     */
    deselect: function(records, suppressEvent) {
        this.doDeselect(records, suppressEvent);
    },
 
<span id='Ext-selection-Model-method-doSelect'>    doSelect: function(records, keepExisting, suppressEvent) {
</span>        var me = this,
            record;
 
        if (me.locked || !me.store) {
            return;
        }
        if (typeof records === &quot;number&quot;) {
            record = me.store.getAt(records);
            // No matching record, jump out
            if (!record) {
                return;
            }
            records = [record];
        }
        if (me.selectionMode == &quot;SINGLE&quot; &amp;&amp; records) {
            record = records.length ? records[0] : records;
            me.doSingleSelect(record, suppressEvent);
        } else {
            me.doMultiSelect(records, keepExisting, suppressEvent);
        }
    },
 
<span id='Ext-selection-Model-method-doMultiSelect'>    doMultiSelect: function(records, keepExisting, suppressEvent) {
</span>        var me = this,
            selected = me.selected,
            change = false,
            result, i, len, record, commit;
 
        if (me.locked) {
            return;
        }
 
        records = !Ext.isArray(records) ? [records] : records;
        len = records.length;
        if (!keepExisting &amp;&amp; selected.getCount() &gt; 0) {
            result = me.deselectDuringSelect(records, selected.getRange(), suppressEvent);
            if (result[0]) {
                // We had a failure during seletion, so jump out
                // Fire selection change if we did deselect anything
                me.maybeFireSelectionChange(result[1] &gt; 0 &amp;&amp; !suppressEvent);
                return;
            }
        }
 
        commit = function() {
            selected.add(record);
            change = true;
        };
 
        for (i = 0; i &lt; len; i++) {
            record = records[i];
            if (me.isSelected(record)) {
                continue;
            }
            me.lastSelected = record;
 
            me.onSelectChange(record, true, suppressEvent, commit);
        }
        if (!me.preventFocus) {
            me.setLastFocused(record, suppressEvent);
        }
        // fire selchange if there was a change and there is no suppressEvent flag
        me.maybeFireSelectionChange(change &amp;&amp; !suppressEvent);
    },
    
<span id='Ext-selection-Model-method-deselectDuringSelect'>    deselectDuringSelect: function(toSelect, selected, suppressEvent) {
</span>        var me = this,
            len = selected.length,
            changed = 0,
            failed = false,
            item, i;
            
        // Prevent selection change events from firing, will happen during select
        me.suspendChanges();
        for (i = 0; i &lt; len; ++i) {
            item = selected[i];
            if (!Ext.Array.contains(toSelect, item)) {
                if (me.doDeselect(item, suppressEvent)) {
                    ++changed;
                } else {
                    failed = true;
                }
            }
        }
        me.resumeChanges();
        
        return [failed, changed];
    },
 
<span id='Ext-selection-Model-method-doDeselect'>    // records can be an index, a record or an array of records
</span>    doDeselect: function(records, suppressEvent) {
        var me = this,
            selected = me.selected,
            i = 0,
            len, record,
            attempted = 0,
            accepted = 0,
            commit;
 
        if (me.locked || !me.store) {
            return false;
        }
 
        if (typeof records === &quot;number&quot;) {
            // No matching record, jump out
            record = me.store.getAt(records);
            if (!record) {
                return false;
            }
            records = [record];
        } else if (!Ext.isArray(records)) {
            records = [records];
        }
 
        commit = function() {
            ++accepted;
            selected.remove(record);
        };
 
        len = records.length;
 
        me.suspendChanges();
        for (; i &lt; len; i++) {
            record = records[i];
            if (me.isSelected(record)) {
                if (me.lastSelected === record) {
                    me.lastSelected = selected.last();
                    if (me.lastFocused === record) {
                        me.setLastFocused(null);
                    }
                }
                ++attempted;
                me.onSelectChange(record, false, suppressEvent, commit);
            }
        }
        me.resumeChanges();
 
        // fire selchange if there was a change and there is no suppressEvent flag
        me.maybeFireSelectionChange(accepted &gt; 0 &amp;&amp; !suppressEvent);
        return accepted === attempted;
    },
 
<span id='Ext-selection-Model-method-doSingleSelect'>    doSingleSelect: function(record, suppressEvent) {
</span>        var me = this,
            changed = false,
            selected = me.selected,
            commit;
 
        if (me.locked) {
            return;
        }
        // already selected.
        // should we also check beforeselect?
        if (me.isSelected(record)) {
            return;
        }
        
        if (selected.getCount()) {
            me.suspendChanges();
            if (!me.doDeselect(me.lastSelected, suppressEvent)) {
                me.resumeChanges();
                return;
            }
            me.resumeChanges();
        }
 
        commit = function() {
            selected.add(record);
            me.lastSelected = record;
            changed = true;
        };
 
        me.onSelectChange(record, true, suppressEvent, commit);
 
        if (changed) {
            if (!suppressEvent &amp;&amp; !me.preventFocus) {
                me.setLastFocused(record);
            }
            me.maybeFireSelectionChange(!suppressEvent);
        }
    },
 
<span id='Ext-selection-Model-method-setLastFocused'>    /**
</span>     * Sets a record as the last focused record. This does NOT mean
     * that the record has been selected.
     * @param {Ext.data.Model} record
     */
    setLastFocused: function(record, supressFocus) {
        var me = this,
            recordBeforeLast = me.lastFocused;
 
        // Only call the changed method if in fact the selected record *has* changed.
        if (record !== recordBeforeLast) {
            me.lastFocused = record;
            me.onLastFocusChanged(recordBeforeLast, record, supressFocus);
        }
    },
 
<span id='Ext-selection-Model-method-isFocused'>    /**
</span>     * Determines if this record is currently focused.
     * @param {Ext.data.Model} record
     */
    isFocused: function(record) {
        return record === this.getLastFocused();
    },
 
<span id='Ext-selection-Model-method-maybeFireSelectionChange'>    // fire selection change as long as true is not passed
</span>    // into maybeFireSelectionChange
    maybeFireSelectionChange: function(fireEvent) {
        var me = this;
        if (fireEvent &amp;&amp; !me.suspendChange) {
            me.fireEvent('selectionchange', me, me.getSelection());
        }
    },
 
<span id='Ext-selection-Model-method-getLastSelected'>    /**
</span>     * @return {Ext.data.Model} Returns the last selected record.
     */
    getLastSelected: function() {
        return this.lastSelected;
    },
 
<span id='Ext-selection-Model-method-getLastFocused'>    getLastFocused: function() {
</span>        return this.lastFocused;
    },
 
<span id='Ext-selection-Model-method-getSelection'>    /**
</span>     * Returns an array of the currently selected records.
     * @return {Ext.data.Model[]} The selected records
     */
    getSelection: function() {
        return this.selected.getRange();
    },
 
<span id='Ext-selection-Model-method-getSelectionMode'>    /**
</span>     * Returns the current selectionMode.
     * @return {String} The selectionMode: 'SINGLE', 'MULTI' or 'SIMPLE'.
     */
    getSelectionMode: function() {
        return this.selectionMode;
    },
 
<span id='Ext-selection-Model-method-setSelectionMode'>    /**
</span>     * Sets the current selectionMode.
     * @param {String} selMode 'SINGLE', 'MULTI' or 'SIMPLE'.
     */
    setSelectionMode: function(selMode) {
        selMode = selMode ? selMode.toUpperCase() : 'SINGLE';
        // set to mode specified unless it doesnt exist, in that case
        // use single.
        this.selectionMode = this.modes[selMode] ? selMode : 'SINGLE';
    },
 
<span id='Ext-selection-Model-method-isLocked'>    /**
</span>     * Returns true if the selections are locked.
     * @return {Boolean}
     */
    isLocked: function() {
        return this.locked;
    },
 
<span id='Ext-selection-Model-method-setLocked'>    /**
</span>     * Locks the current selection and disables any changes from happening to the selection.
     * @param {Boolean} locked  True to lock, false to unlock.
     */
    setLocked: function(locked) {
        this.locked = !!locked;
    },
 
<span id='Ext-selection-Model-method-isRangeSelected'>    /**
</span>     * Returns true if the specified row is selected.
     * @param {Ext.data.Model/Number} from The start of the range to check.
     * @param {Ext.data.Model/Number} to The end of the range to check.
     * @return {Boolean}
     */
    isRangeSelected: function(startRow, endRow) {
        var me = this,
            store = me.store,
            i, result;
 
        result = me.normalizeRowRange(startRow, endRow);
        startRow = result[0];
        endRow = result[1];
 
        // Loop through. If any of the range is not selected, the answer is false.
        for (i = startRow; i &lt;= endRow; i++) {
            if (!me.isSelected(store.getAt(i))) {
                return false;
            }
        }
        return true;
    },
 
<span id='Ext-selection-Model-method-isSelected'>    /**
</span>     * Returns true if the specified row is selected.
     * @param {Ext.data.Model/Number} record The record or index of the record to check
     * @return {Boolean}
     */
    isSelected: function(record) {
        record = Ext.isNumber(record) ? this.store.getAt(record) : record;
        return this.selected.contains(record);
    },
 
<span id='Ext-selection-Model-method-hasSelection'>    /**
</span>     * Returns true if there are any a selected records.
     * @return {Boolean}
     */
    hasSelection: function() {
        return this.selected.getCount() &gt; 0;
    },
 
<span id='Ext-selection-Model-method-getSelectionId'>    getSelectionId: function(record){
</span>        return record.internalId;
    },
 
<span id='Ext-selection-Model-method-pruneIf'>    pruneIf: function() {
</span>        var me = this,
            selected = me.selected,
            toRemove = [],
            len = selected.length,
            i, item;
 
        if (me.pruneRemoved) {
            for (i = 0; i &lt; len; i++) {
                item = selected.getAt(i);
                if (!this.storeHasSelected(item)) {
                    toRemove.push(item);
                }
            }
            if (toRemove.length) {
                for (i = 0, len = toRemove.length; i &lt; len; i++) {
                    selected.remove(toRemove[i]);
                }
                me.maybeFireSelectionChange(true);
            }
        }
    },
 
<span id='Ext-selection-Model-method-storeHasSelected'>    // We need this special check because we could have a model
</span>    // without an idProperty. getById() is fast, so we use that
    // if possible, otherwise we need to check the internalId
    storeHasSelected: function(record) {
        var store = this.store,
            records,
            len, id, i;
 
        if (record.hasId() &amp;&amp; store.getById(record)) {
            return true;
        } else {
            records = store.data.items;
            len = records.length;
            id = record.internalId;
 
            for (i = 0; i &lt; len; ++i) {
                if (id === records[i].internalId) {
                    return true;
                }
            }
        }
        return false;
    },
 
<span id='Ext-selection-Model-method-refresh'>    refresh: function() {
</span>        var me = this,
            store = me.store,
            rec,
            toBeSelected = [],
            toBeReAdded = [],
            oldSelections = me.getSelection(),
            len = oldSelections.length,
            selection,
            change,
            i = 0,
            lastFocused = me.getLastFocused();
 
        // Not been bound yet.
        if (!store) {
            return;
        }
 
        // Add currently records to the toBeSelected list if present in the Store
        // If they are not present, and pruneRemoved is false, we must still retain the record
        for (; i &lt; len; i++) {
            selection = oldSelections[i];
            if (store.indexOf(selection) !== -1) {
                toBeSelected.push(selection);
            }
 
            // Selected records no longer represented in Store must be retained
            else if (!me.pruneRemoved) {
                // See if a record by the same ID exists. If so, select it
                rec = store.getById(selection.getId());
                if (rec) {
                    toBeSelected.push(rec);
                }
                // If it does not exist, we have to re-add it to the selection
                else {
                    toBeReAdded.push(selection)
                }
            }
 
            // In single select mode, only one record may be selected
            if (me.mode === 'SINGLE' &amp;&amp; toBeReAdded.length) {
                break;
            }
        }
 
        // there was a change from the old selected and
        // the new selection
        if (me.selected.getCount() != (toBeSelected.length + toBeReAdded.length)) {
            change = true;
        }
 
        me.clearSelections();
 
        if (store.indexOf(lastFocused) !== -1) {
            // restore the last focus but supress restoring focus
            me.setLastFocused(lastFocused, true);
        }
 
        if (toBeSelected.length) {
            // perform the selection again
            me.doSelect(toBeSelected, false, true);
        }
 
        // If some of the selections were not present in the Store, but pruneRemoved is false, we must add them back
        if (toBeReAdded.length) {
            me.selected.addAll(toBeReAdded);
 
            // No records reselected.
            if (!me.lastSelected) {
                me.lastSelected = toBeReAdded[toBeReAdded.length - 1];
            }
        }
 
        me.maybeFireSelectionChange(change);
    },
 
<span id='Ext-selection-Model-method-clearSelections'>    /**
</span>     * A fast reset of the selections without firing events, updating the ui, etc.
     * For private usage only.
     * @private
     */
    clearSelections: function() {
        // reset the entire selection to nothing
        this.selected.clear();
        this.lastSelected = null;
        this.setLastFocused(null);
    },
 
<span id='Ext-selection-Model-method-onStoreAdd'>    // when a record is added to a store
</span>    onStoreAdd: Ext.emptyFn,
 
<span id='Ext-selection-Model-method-onStoreClear'>    // when a store is cleared remove all selections
</span>    // (if there were any)
    onStoreClear: function() {
        if (this.selected.getCount() &gt; 0) {
            this.clearSelections();
            this.maybeFireSelectionChange(true);
        }
    },
 
<span id='Ext-selection-Model-method-onStoreRemove'>    // prune records from the SelectionModel if
</span>    // they were selected at the time they were
    // removed.
    onStoreRemove: function(store, records, indexes, isMove) {
        var me = this;
 
        // If the selection start point is among records being removed, we no longer have a selection start point.
        if (me.selectionStart &amp;&amp; Ext.Array.contains(records, me.selectionStart)) {
            me.selectionStart = null;
        }
 
        if (isMove || me.locked || !me.pruneRemoved) {
            return;
        }
        me.deselectDeletedRecords(records);
    },
 
<span id='Ext-selection-Model-method-deselectDeletedRecords'>    // @private
</span>    // Called by subclasses to deselect records upon detection of deletion from the store
    deselectDeletedRecords: function(records) {
        var me = this,
            selected = me.selected,
            i, length = records.length,
            removed = 0,
            record;
 
        // Deselect records which were removed
        for (i = 0; i &lt; length; i++) {
            record = records[i];
            if (selected.remove(record)) {
                if (me.lastSelected == record) {
                    me.lastSelected = null;
                }
                if (me.getLastFocused() == record) {
                    me.setLastFocused(null);
                }
                ++removed;
            }
        }
        if (removed) {
            me.maybeFireSelectionChange(true);
        }
    },
 
<span id='Ext-selection-Model-method-getCount'>    /**
</span>     * Returns the count of selected records.
     * @return {Number} The number of selected records
     */
    getCount: function() {
        return this.selected.getCount();
    },
 
<span id='Ext-selection-Model-method-onUpdate'>    // Called when the contents of the node are updated, perform any processing here.
</span>    onUpdate: Ext.emptyFn,
 
<span id='Ext-selection-Model-method-destroy'>    // cleanup.
</span>    destroy: function(){
        this.clearListeners();    
    },
 
<span id='Ext-selection-Model-method-onStoreUpdate'>    // if records are updated
</span>    onStoreUpdate: Ext.emptyFn,
 
<span id='Ext-selection-Model-method-onStoreRefresh'>    onStoreRefresh: Ext.emptyFn,
</span>
<span id='Ext-selection-Model-method-onStoreLoad'>    /**
</span>     * @abstract
     * @private
     */
    onStoreLoad: Ext.emptyFn,
 
<span id='Ext-selection-Model-method-onSelectChange'>    // @abstract
</span>    onSelectChange: function(record, isSelected, suppressEvent, commitFn) {
        var me = this,
            eventName = isSelected ? 'select' : 'deselect';
 
        if ((suppressEvent || me.fireEvent('before' + eventName, me, record)) !== false &amp;&amp;
           commitFn() !== false) {
 
            if (!suppressEvent) {
                me.fireEvent(eventName, me, record);
            }
        }   
    },
 
<span id='Ext-selection-Model-method-onLastFocusChanged'>    // @abstract
</span>    onLastFocusChanged: function(oldFocused, newFocused) {
        this.fireEvent('focuschange', this, oldFocused, newFocused);
    },
 
<span id='Ext-selection-Model-method-onEditorKey'>    // @abstract
</span>    onEditorKey: Ext.emptyFn,
 
<span id='Ext-selection-Model-method-beforeViewRender'>    // @abstract
</span>    beforeViewRender: function(view) {
        this.views = this.views || [];
        this.views.push(view);
        this.bindStore(view.getStore(), true);
    },
 
<span id='Ext-selection-Model-method-bindComponent'>    // @abstract
</span>    bindComponent: Ext.emptyFn
});
</pre>
</body>
</html>