X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/530ef4b6c5b943cfa68b779d11cf7de29aa878bf..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/window/gmap.js diff --git a/examples/window/gmap.js b/examples/window/gmap.js index 497ebbba..c20f73b0 100644 --- a/examples/window/gmap.js +++ b/examples/window/gmap.js @@ -1,25 +1,24 @@ -/*! - * Ext JS Library 3.2.1 - * Copyright(c) 2006-2010 Ext JS, Inc. - * licensing@extjs.com - * http://www.extjs.com/license - */ +Ext.Loader.setConfig({enabled: true}); +Ext.Loader.setPath('Ext.ux', '../ux'); +Ext.require([ + 'Ext.window.*', + 'Ext.ux.GMapPanel' +]); Ext.onReady(function(){ - var mapwin; - var button = Ext.get('show-btn'); - - button.on('click', function(){ + + Ext.get('show-btn').on('click', function() { // create the window on the first click and reuse on subsequent clicks if(!mapwin){ - mapwin = new Ext.Window({ + mapwin = Ext.create('Ext.Window', { layout: 'fit', title: 'GMap Window', closeAction: 'hide', - width:400, - height:400, + width:450, + height:450, + border: false, x: 40, y: 60, items: { @@ -38,7 +37,7 @@ Ext.onReady(function(){ marker: {title: 'Boston Museum of Fine Arts'}, listeners: { click: function(e){ - Ext.Msg.alert('Its fine', 'and its art.'); + Ext.Msg.alert({title: 'Its fine', text: 'and its art.'}); } } },{