7
votes

How to set a panel or a window transparent (half)? Via CSS or set the html code? The extjs version is 4.0.7. Thanks.

1

1 Answers

9
votes

You can accomplish this with CSS.

Add this config to your panel:

bodyStyle: 'background:transparent;'

or

bodyStyle: 'opacity:0.5;'