Hi,
I've create at ng2-table standard, with the event (cellClicked)="onSelect($event)".
In my component :
public onSelect(data: any) {
var config = new MdDialogConfig();
config.position = {
top: '-500px',
left: '230px'
};
config.data = {
groupeId: data.row["Id"]
};
this.dialog.open(DetailComponent, config);
}
My dialog modal is correctly opened but is behind the table. How to fix that ?