Hello,
i have this code
Code:
Ext.BLANK_IMAGE_URL = './javascript/extjs3/resources/images/default/s.gif';
Ext.onReady(function(){
var wizardContainer = new Ext.Panel({
id: 'wizardContainer'
,name: 'wizardContainer'
,region:'center'
,margins:'0 0 0 0'
,layout:'border'
,autoScroll:false
,border:false
,width: '100%'
,height: '100%'
,bodyStyle: 'background: none'
,items: [{
region: 'center'
,border: false
,bodyStyle: 'background: none'
}]
});
var viewport = new Ext.Viewport({
layout:'border'
,cls : 'viewport'
,hideMode: 'offsets'
,items:[wizardContainer]
});
}
this css:
Code:
.viewport {
background-color: #ffffff;
background-image: url(../images/pints1.png) no-repeat;
}
I use ExtJS3RC1.1, in IE8 and FF3.0.10 works fine.
But in IE7 this error:
"Expected identifier, string or number (http://ldaptest.ipcb.pt/newsite/,147)"
How can i know here is the error... can someone help me...
Thanks in advance
Paulo Dias