Sizing

Hi
I use this code
The dialog popups but after half a second the dialog gets a few millimeter smaller.
How come?
Eric
I use this code
- Code: Select all
procedure TIWEditOrderItem.ShowDialog(Dlg: TIWCGJQMsgDialog; AMessage: String);
begin
Dlg.JQDialogOptions.OnClose.OnEvent := DialogClose;
Dlg.JQDialogOptions.ShowCloseIcon:= False;
Dlg.JQDialogOptions.Resizable := False;
Dlg.JQDialogOptions.AutoHeight := True;
Dlg.JQDialogOptions.AutoWidth := True;
Dlg.Message := AMessage;
if (CGIsCallbackProcessing) then
Dlg.AjaxReRender();
The dialog popups but after half a second the dialog gets a few millimeter smaller.
How come?
Eric