mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-27 09:09:04 +01:00
Define receive callback for sortable grid
This commit is contained in:
parent
c6f2f7f85e
commit
350f1cd0b7
@ -62,6 +62,12 @@ var et2_grid = (function(){ "use strict"; return et2_DOMWidget.extend([et2_IDeta
|
|||||||
type: "string",
|
type: "string",
|
||||||
default: "",
|
default: "",
|
||||||
description: "Defines other sortable areas that should be connected to sort list"
|
description: "Defines other sortable areas that should be connected to sort list"
|
||||||
|
},
|
||||||
|
sortable_recieveCallback: {
|
||||||
|
name: "Sortable receive callback",
|
||||||
|
type: "string",
|
||||||
|
default: et2_no_init,
|
||||||
|
description: "Defines sortable receive callback function"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -944,6 +950,11 @@ var et2_grid = (function(){ "use strict"; return et2_DOMWidget.extend([et2_IDeta
|
|||||||
self,
|
self,
|
||||||
true
|
true
|
||||||
).sendRequest();
|
).sendRequest();
|
||||||
|
},
|
||||||
|
receive: function (event, ui) {
|
||||||
|
if (typeof self.options.sortable_recieveCallback == 'function') {
|
||||||
|
self.options.sortable_recieveCallback.call(self, event,ui);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user