In ExtJS you don't need a init function. onReady is called automatically. Just put a script tag at the bottom of your page as follows:

<script>
        Ext.onReady(function(){
            //all start up code
        });
</script>
</html>

On 29/11/2010 12:06, Jozef wrote:
I did what have been suggested and it helps with that vml error.
I put all Ext.onReady(function() {}) within init funcition :

function init(){

    Ext.onReady(function() {
  ...
  ...
    })

}

and

<body onload="init();">



_______________________________________________
Users mailing list
[email protected]
http://lists.osgeo.org/mailman/listinfo/openlayers-users

Reply via email to