TWebMessageDlg is not in Front

Dear all,

is there any way to force the dialog to show in front (Modal) of the web application ??

LModalResult := await(TModalResult, WebMessageDlg.ShowDialog(cEDataSaveMsg, mtConfirmation, [mbYes,mbNo]));
if LModalResult = mrYes then
begin
try
Result := await(SaveData);
except
result := false;
end;
end else
begin
result := false;
end;

This is the way i ivoke the Dialog, but the dialog is hidden behind my web pages...
The dialog seems to be there, but is not shown...

Any idea ?

br Michael

Hi,

The "MessageDialogs" demo is working as expected.
Are you using custom and/or external CSS/JavaScript that could cause a conflict in your project?

Does the issue also happen in a new project that only contains a TWebMessageDialog component?

Hi,

thx for the hint, my JavaScript guy found the problem...

Br
Michael