Announcement

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

    Tahoe window header details

    Hi...

    I'm checking the new skin that comes with 11.1 on the show case web https://www.smartclient.com/smartcli...izeIncrease=10
    Current version: "SNAPSHOT_v11.1d_2017-03-09/AllModules Development Only"

    I've noticed some details about Window header.

    One is that header has no border. This causes that when there are two windows overlapped the header is confused. Body and footer looks nice...

    As you can see:
    Code:
    isc.Window.create({
        ID: "Win1",
        title: "Win1",
        width: 200, height: 200,
        canDragResize:true,
        showFooter: true,
        items: [
            isc.Label.create({
                contents: "Window header border",
                align: "center",
                padding: 5,
                height: "100%",
                click : function () {
                    theWindow.setStatus("Click at: "+isc.EventHandler.getX()+", "+isc.EventHandler.getY());
                }
            })
        ]
    
    });
    isc.Window.create({
        ID: "Win2",
        title: "Win2",
        width: 200, height: 200,
        canDragResize:true,
        showFooter: true,
        top: 20,
        left: 100,
        items: [
            isc.Label.create({
                contents: "Window header border",
                align: "center",
                padding: 5,
                height: "100%",
                click : function () {
                    theWindow.setStatus("Click at: "+isc.EventHandler.getX()+", "+isc.EventHandler.getY());
                }
            })
        ]
    
    });
    Another thing is that I've noticed skin header does not include additional icons as the other regular skins (help, pin, etc...). Do you plan to include them?

    Nice skin...

    Best regards.

Working...
X