WebDialogbox - Problem with Size and DropDownOffset

4 replies. Last post: January 20, 2011 8:29 AM by Handy Surya
Tags :
  • New Discussion
  • New Question
  • New Product Feedback

Hi

1. DropDownOffset (please have a look on attached picture)

When I scroll down, it creates a gap between WebCombo and Resultbox (ContentMode: IFrame)

2. WebDialogSize

I shows the DialogBox with following Code on ClientSideEvent:

        function StartOrder() {
            var dlg = ISGetObject("wdb");
            SetDialogBox(dlg, "Auftrag starten...");
            dlg.SetContentURL("ProductionStart.aspx");
            dlg.ControlBoxImage = "";
            dlg.Width = "450px";
            dlg.Height = "395px";
            dlg.ShowDialog();

            return true;
        }
        function ManuallyErrorAdd() {
            var dlg = ISGetObject("wdb");
            SetDialogBox(dlg, "Fehler manuell hinzufügen...");
            dlg.SetContentURL("ManuallyError.aspx");
            dlg.ControlBoxImage = "";
            dlg.Width = "450px";
            dlg.Height = "600px";
            dlg.ShowDialog();

            return true;
        }
I use IFrame and set ContentURL to ProductionStart.aspx respectively ManuallyError.aspx.

Please note that I define Height and Width both times. The WebDialogBox is always displayed with the size that i first set!

Why? Do I need a separate WebDialogbox for each content?

Thanks Michael

All times are GMT -5. The time now is 2:03 PM.
Previous Next