return target;
}
-FolderDDropControler = function(listing, firstItemPos) {
+FolderDDropControler = function(listing, orderable, firstItemPos) {
this.folderUrl = document.getElementById("FolderUrl").innerHTML;
this.targetRow = null;
this.lastOverPosition = null;
this.listing = listing;
this.firstItemPos = firstItemPos;
this._updatePositions();
+ this.lastCBChecked = undefined;
var thisControler = this;
- this.listing.onmousedown = function(evt) {thisControler.drag(evt);};
- this.listing.onmouseover = function(evt) {thisControler.moveRow(evt);};
- this.listing.onmouseup = function(evt) {thisControler.drop(evt);};
- addListener(this.listing, 'click', function(evt) {thisControler.disableClickAfterDrop(evt);});
+ if (orderable) {
+ this.listing.onmousedown = function(evt) {thisControler.drag(evt);};
+ this.listing.onmouseover = function(evt) {thisControler.moveRow(evt);};
+ this.listing.onmouseup = function(evt) {thisControler.drop(evt);};
+ addListener(this.listing, 'click', function(evt) {thisControler.disableClickAfterDrop(evt);});
+ }
addListener(this.listing, 'click', function(evt) {thisControler.selectCBRange(evt);});
- if (browser.isIE) {
+ if (browser.isIE10max) {
this.listing.ondragstart = function() { window.event.returnValue = false;};
}
};
var targetRow = this.targetRow;
if (targetRow !== null) {
this.noOver = false;
- if (browser.isIE) {document.selection.clear();}
+ if (browser.isIE10max) {document.selection.clear();}
var overRow = getTargetRow(evt);
if (overRow.pos === targetRow.pos) {return;}
String(this.lastOverPosition - 1 + trim);
// reinitialize positions
- this._updatePositions()
+ this._updatePositions();
// send request
var req = new XMLHttpRequest();
};
FolderDDropControler.prototype.selectCBRange = function(evt) {
+ var target = getTargetedObject(evt);
+ if (target.tagName === 'INPUT' && target.type === 'checkbox') {
+ evt = getEventObject(evt);
+ var shift = evt.shiftKey;
+ if (shift && this.lastCBChecked) {
+ var from = this.getCBIndex(this.lastCBChecked);
+ var to = this.getCBIndex(target);
+ var rows = this.listing.getElementsByTagName('TR');
+ var start = Math.min(from, to);
+ var stop = Math.max(from, to);
+ var i;
+ for (i=start ; i<stop ; i++ ) {
+ rows[i].getElementsByTagName('INPUT')[0].checked = true;
+ }
+ }
+ else if (target.checked) {
+ this.lastCBChecked = target;
+ }
+ else {
+ this.lastCBChecked = undefined;
+ }
+ }
};
+FolderDDropControler.prototype.getCBIndex = function(cb) {
+ var row = cb.parentNode;
+ while(row.tagName !== 'TR') {
+ row = row.parentNode;
+ }
+ return row.pos - this.firstItemPos;
+};
FolderDDropControler.prototype.reset = function() {
this.targetRow = null;
};
DropTarget.prototype.highlightTarget = function(evt){
- if (browser.isIE) {document.selection.clear();}
+ if (browser.isIE10max) {document.selection.clear();}
var target = getTargetedObject(evt);
if (this.folderDDControler.targetRow &&
target.nodeName === "A" &&