如何移动MdDialog(“@ angular / material”:“^ 2.0.0-beta.10”)?试图使用几个拖放插件(现在在“ng2-drag-drop”:“^ 2.6.0”)。它们允许我移动对话框的内容,而不是自己的对话框(弹出窗口)。
打开对话框:
public custom<DialogComponent>(component: any, config: MdDialogConfig) {
let dialogRef = this.dialog.open(component, config);
}
对话框模板:
<div ngDraggable>
<p> dialog content </p>
</div>
对话框设置:
let config = new MdDialogConfig();
config.disableClose = true;
config.hasBackdrop = false;
this.dialogService.custom<DialogComponent>(DialogComponent, config);