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
and the style
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
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();
Code:
.canvasModalMask{
background-color: black;
opacity: .20;
-webkit-opacity: .2;
-moz-opacity: .2;
filter: alpha(opacity=20);
z-index: 1000;
}
Thanks
Comment