SmartGWT build v8.3p_2013-02-18/LGPL Development Only (built 2013-02-18)
I use the old Enterprise theme with slight customization. In IE9 left and right borders have inlined size "auto" - see attached picture "border_size_auto".
I see that EdgedCanvas has special care for IE9 but for some reason it doesn't apply the constructed size info or doesn't construct it.
In my load_skin.js I have the following settings
The desired behavior is to have borders width 6px.
I have problems tracing this because when I use module SmartGwtDebug it ignores my theme.
How can I get both - not minified JS and custom theme?
I use the old Enterprise theme with slight customization. In IE9 left and right borders have inlined size "auto" - see attached picture "border_size_auto".
I see that EdgedCanvas has special care for IE9 but for some reason it doesn't apply the constructed size info or doesn't construct it.
In my load_skin.js I have the following settings
Code:
//----------------------------------------
// 7) Windows
//----------------------------------------
if (isc.Window) {
isc.Window.addProperties({
// rounded frame edges
showEdges:true,
edgeImage: "[SKINIMG]Window/window.png",
customEdges:null,
edgeSize:6,
edgeTop:23,
edgeBottom:5,
edgeOffsetTop:2,
edgeOffsetRight:5,
edgeOffsetBottom:5,
showHeaderBackground:false, // part of edges
showHeaderIcon:true,
// clear backgroundColor and style since corners are rounded
backgroundColor:null,
border: null,
styleName:"normal",
edgeCenterBackgroundColor:"#FFFFFF",
bodyColor:"transparent",
bodyStyle:"windowBody",
layoutMargin:0,
membersMargin:0,
showFooter:false,
showShadow:false,
shadowDepth:5
})
I have problems tracing this because when I use module SmartGwtDebug it ignores my theme.
How can I get both - not minified JS and custom theme?
Comment