Quantcast
Channel: SmartClient Forums
Viewing all articles
Browse latest Browse all 4756

Adopting to Window like modal for 3rd party software.

$
0
0
1. v9.1p_2015-01-08/Pro Deployment (built 2015-01-08)

2. Browser - any

3. I am using a thirdparty software called hopscotch for our product tours.

Currently I have

Code:

this.modal_o = isc.Canvas.create({
            ID:"tourModal",
            styleName: "canvasModalMask",
            height: "100%",
            width: "100%"
        });
this.modal_o.hideClickMask();

and the style
Code:

.canvasModalMask{
    background-color: black;
    opacity: .20;
    -webkit-opacity: .2;
    -moz-opacity: .2;
    filter: alpha(opacity=20);
    z-index: 1000;
}

To mimic smartclient's Window.modalMask. The above workaround still allows components in the background to be keyboard accessible - which should not happen for a modal. I was wondering if there are any APIs that might help me achieve the modal for above situation.

Thanks

Viewing all articles
Browse latest Browse all 4756

Trending Articles