mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
Etemplate: Include etemplate exec_id as sortable parameter
This commit is contained in:
parent
b3ed6372f7
commit
8b28d8ffd0
@ -714,7 +714,11 @@ var et2_grid = /** @class */ (function (_super) {
|
||||
containment: this.options.sortable_containment,
|
||||
connectWith: this.options.sortable_connectWith,
|
||||
update: function (event, ui) {
|
||||
self.egw().json(sortable, [$node.sortable("toArray"), self.id], null, self, true).sendRequest();
|
||||
self.egw().json(sortable, [
|
||||
self.getInstanceManager().etemplate_exec_id,
|
||||
$node.sortable("toArray"),
|
||||
self.id
|
||||
], null, self, true).sendRequest();
|
||||
},
|
||||
receive: function (event, ui) {
|
||||
if (typeof self.sortable_recieveCallback == 'function') {
|
||||
|
@ -972,7 +972,10 @@ export class et2_grid extends et2_DOMWidget implements et2_IDetachedDOM, et2_IAl
|
||||
containment: this.options.sortable_containment,
|
||||
connectWith: this.options.sortable_connectWith,
|
||||
update: function(event, ui) {
|
||||
self.egw().json(sortable,[$node.sortable("toArray"), self.id],
|
||||
self.egw().json(sortable,[
|
||||
self.getInstanceManager().etemplate_exec_id,
|
||||
$node.sortable("toArray"),
|
||||
self.id],
|
||||
null,
|
||||
self,
|
||||
true
|
||||
|
@ -892,7 +892,7 @@ class mail_sieve
|
||||
*
|
||||
* @param {array} $orders
|
||||
*/
|
||||
function ajax_moveRule($orders)
|
||||
function ajax_moveRule($exec_id, $orders)
|
||||
{
|
||||
|
||||
foreach ($orders as $keys => $val)
|
||||
|
Loading…
Reference in New Issue
Block a user