How can I position a dialog above the triggering button?

后端 未结 4 435
悲哀的现实
悲哀的现实 2020-12-14 01:10

I\'m about to put a fist through my PC screen. I have a dialog box that refuses to budge a hot inch above my submit button at the bottom of the screen -- I want it at the v

4条回答
  •  無奈伤痛
    2020-12-14 01:51

    const dialogRef = this.dialog.open(DialogOverviewExampleDialog, {
          width: '250px',
          data: { name: this.name, animal: this.animal },
          position: {
            top: '0px',
            left: '0px'
          }
        });
    

提交回复
热议问题