We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f0e108 commit 29ff084Copy full SHA for 29ff084
grid-editing/grid-selectable.html
@@ -80,15 +80,9 @@
80
}
81
});
82
83
+ // TODO clear selection (on other pages) when starting from scratch
84
grid.selectable({
85
filter: "tr",
- start: function( ev, eventArgs ) {
86
- // If ctrlKey not true, remove any other items in selected
87
- // which may be on other pages than the current one.
88
- if ( !ev.ctrlKey ) {
89
- $.observable( selected ).remove( 0, selected.length );
90
- }
91
- },
92
selected: function( ev, ui ) {
93
var item = $(ui.selected).data("grid-item");
94
if ( $.inArray( item, selected ) === -1 ) {
0 commit comments