EGL Development User Group

EGL Development User Group

EGL Development User Group

The EGL Development User Group is dedicated to sharing news, knowledge, and insights regarding the EGL language and Business Developer product. Consisting of IBMers, HCL, and users, this community collaborates to advance the EGL ecosystem.

 View Only
Expand all | Collapse all

dojoDialog in specific position

Discussion Topic

Discussion TopicWed August 05, 2015 09:42 AM

Discussion Topic

Discussion TopicThu August 06, 2015 06:00 AM

  • 1.  dojoDialog in specific position

    Posted Wed August 05, 2015 04:42 AM

    Hi everyone,

     

    I want to display an pop up box, but in specific position. I set dojoDialog.style="left:1000px";, but doesn't work. What's going wrong? This is my code:


         function LblKald_onMouseOver(event Event in)
            dojoDialog DojoDialog{title = "Popup", children = [new HTML{text = "My popup window"}]};

            dojoDialog.style="left:1000px";
             dojoDialog.showDialog();
        end

    xarlap


  • 2.  Re: dojoDialog in specific position

    Posted Wed August 05, 2015 09:42 AM

    Hi,

    try this:

     

            dojoDialog.showDialog();        dojoDialog.x = 550;        dojoDialog.y = 360;

     

    Marcel-D


  • 3.  Re: dojoDialog in specific position

    Posted Thu August 06, 2015 06:00 AM

    This works. Thanks a lot.

    xarlap