mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Fix no drop place when there's no action in toolbar widget
This commit is contained in:
parent
81ed37dab5
commit
dbb6adf806
@ -203,6 +203,10 @@ var et2_toolbar = et2_DOMWidget.extend(
|
||||
drop:function (event, ui) {
|
||||
that.set_prefered(ui.draggable.attr('id').replace(that.id+'-',''),"add");
|
||||
ui.draggable.appendTo(menulist);
|
||||
if (that.actionlist.find(".ui-draggable").length == 1)
|
||||
{
|
||||
that.actionlist.addClass("ui-toolbar_dropShadow");
|
||||
}
|
||||
},
|
||||
tolerance:"pointer"
|
||||
});
|
||||
@ -212,12 +216,24 @@ var et2_toolbar = et2_DOMWidget.extend(
|
||||
drop:function (event,ui) {
|
||||
that.set_prefered(ui.draggable.attr('id').replace(that.id+'-',''),"remove");
|
||||
ui.draggable.appendTo(jQuery('#'+that.id+'-'+'actionlist'));
|
||||
that.actionlist.removeClass("ui-toolbar_dropShadow");
|
||||
}
|
||||
});
|
||||
toolbox.accordion({
|
||||
heightStyle:"fill",
|
||||
collapsible: true,
|
||||
active:'none'
|
||||
active:'none',
|
||||
activate:function(event,ui)
|
||||
{
|
||||
if (that.actionlist.find(".ui-draggable").length == 0 && ui.oldPanel.length == 0)
|
||||
{
|
||||
that.actionlist.addClass("ui-toolbar_dropShadow");
|
||||
}
|
||||
else if(that.actionlist.find(".ui-draggable").length == 0 && ui.newPanel.length == 0)
|
||||
{
|
||||
that.actionlist.removeClass("ui-toolbar_dropShadow");
|
||||
}
|
||||
}
|
||||
});
|
||||
},
|
||||
|
||||
|
@ -1178,3 +1178,13 @@ div.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset button {
|
||||
.ms-res-ctn {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
/**
|
||||
* et2_toolbar
|
||||
*/
|
||||
.ui-toolbar_dropShadow {
|
||||
height: 100%;
|
||||
border: dashed;
|
||||
border-width: 1px;
|
||||
border-color: gray;
|
||||
opacity:0.7;
|
||||
}
|
Loading…
Reference in New Issue
Block a user