I have a requirement where when page is loading, i need to disable (All widgets in it should be visible but disabled) the page with faded(opacity) and enable only busy indicator . .
How can i achive that in gwt? Please help
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
After applying the following css style, masking is applied in all the browsers.
.maskingStyle {
background: #666666;
position:absolute;
left:0;
height:0;
z-index:10000;
display:inline-block;
width:100%;
height:100%;
opacity: 0.2;
filter: literal(“alpha(opacity = 20)”);
-webkit-transition: opacity OPACITY_DURATION;
-moz-transition: opacity OPACITY_DURATION;
-o-transition: opacity OPACITY_DURATION;
transition: opacity OPACITY_DURATION;
}