Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Dialog with no toolbar has visual glitch

    I'd like to do something like this:

    Code:
    isc.IButton.create({
        title: "Hello",
        icon: "icons/16/world.png",
        iconOrientation: "right",
        click: "isc.say('hi',null,{ID:'myDialog',showCloseButton:false,toolbarButtons:null,showModalMask:true,canDragReposition:false})"
    })
    in your example:
    https://www.smartclient.com/smartcli...id=helloButton
    (latest smartclient showcase; I'm using Chrome 60)


    so that I can lock a user out of the interface while I'm doing something on the server (and then I'll close it programatically). when I run that code however, there's a gray strip at the bottom at the bottom of the dialog:


    Click image for larger version  Name:	Untitled.png Views:	1 Size:	1.9 KB ID:	248750
    Last edited by nitroamos; 25 Aug 2017, 12:04.

    #2
    You probably want to use isc.showPrompt("hi") and isc.clearPrompt().

    Comment

    Working...
    X