This is a migrated thread and some comments may be shown as answers.

Feature Request: Control over opacity

1 Answer 42 Views
Window
This is a migrated thread and some comments may be shown as answers.
Martillo
Top achievements
Rank 2
Martillo asked on 30 Dec 2008, 03:23 PM
Hi,

The default transparency of the RadWindow is very cool. However, it can also be very distracting, and I currently have a client who definitely does not like it. It would be nice to be able to control this without jumping through hoops. A RadWindow.Opacity property would be a welcome addition.

Thanks for listening...

1 Answer, 1 is accepted

Sort by
0
Svetlina Anati
Telerik team
answered on 30 Dec 2008, 04:57 PM
Hi Martillo,

Implementing a property which will help control the opacity easier is already in our TODO list and will be available in one of our next releases.

For the time being you can control the opacity of RadWindow with CSS or with JavaScript (which is, in fact, the same). The opacity of RadWindow is achieved with the filter, opacity and -moz-opacity CSS properties, applied to the .radwindow class, i.e:

.radwindow
{
    filter: alpha(opacity=10); /* Internet Explorer only */
    opacity: .1; /* FireFox 2x and Opera 9x */
    -moz-opacity: .1; /* older versions of FIreFox and Navigator */
}




Greetings,
Svetlina
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
Window
Asked by
Martillo
Top achievements
Rank 2
Answers by
Svetlina Anati
Telerik team
Share this question
or