Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / examples / ux / ux-all-debug.js
index 6ef28d4..695e1ce 100644 (file)
@@ -1,5 +1,5 @@
 /*!
- * Ext JS Library 3.0.0
+ * Ext JS Library 3.0.3
  * Copyright(c) 2006-2009 Ext JS, LLC
  * licensing@extjs.com
  * http://www.extjs.com/license
@@ -157,6 +157,13 @@ Ext.ux.grid.BufferView = Ext.extend(Ext.grid.GridView, {
                        this.doUpdate();
                }
        },
+    
+    onRemove : function(ds, record, index, isUpdate){
+        Ext.ux.grid.BufferView.superclass.onRemove.apply(this, arguments);
+        if(isUpdate !== true){
+            this.update();
+        }
+    },
 
        doUpdate: function(){
                if (this.getVisibleRowCount() > 0) {
@@ -539,6 +546,9 @@ Ext.DataView.DragSelector = function(cfg){
         if(!proxy){\r
             proxy = view.el.createChild({cls:'x-view-selector'});\r
         }else{\r
+            if(proxy.dom.parentNode !== view.el.dom){\r
+                view.el.dom.appendChild(proxy.dom);\r
+            }\r
             proxy.setDisplayed('block');\r
         }\r
         fillRegions();\r
@@ -653,15 +663,7 @@ Ext.ux.form.FileUploadField = Ext.extend(Ext.form.TextField,  {
         this.wrap = this.el.wrap({cls:'x-form-field-wrap x-form-file-wrap'});
         this.el.addClass('x-form-file-text');
         this.el.dom.removeAttribute('name');
-
-        this.fileInput = this.wrap.createChild({
-            id: this.getFileInputId(),
-            name: this.name||this.getId(),
-            cls: 'x-form-file',
-            tag: 'input',
-            type: 'file',
-            size: 1
-        });
+        this.createFileInput();
 
         var btnCfg = Ext.applyIf(this.buttonCfg || {}, {
             text: this.buttonText
@@ -676,11 +678,49 @@ Ext.ux.form.FileUploadField = Ext.extend(Ext.form.TextField,  {
             this.wrap.setWidth(this.button.getEl().getWidth());
         }
 
-        this.fileInput.on('change', function(){
-            var v = this.fileInput.dom.value;
-            this.setValue(v);
-            this.fireEvent('fileselected', this, v);
-        }, this);
+        this.bindListeners();
+        this.resizeEl = this.positionEl = this.wrap;
+    },
+    
+    bindListeners: function(){
+        this.fileInput.on({
+            scope: this,
+            mouseenter: function() {
+                this.button.addClass(['x-btn-over','x-btn-focus'])
+            },
+            mouseleave: function(){
+                this.button.removeClass(['x-btn-over','x-btn-focus','x-btn-click'])
+            },
+            mousedown: function(){
+                this.button.addClass('x-btn-click')
+            },
+            mouseup: function(){
+                this.button.removeClass(['x-btn-over','x-btn-focus','x-btn-click'])
+            },
+            change: function(){
+                var v = this.fileInput.dom.value;
+                this.setValue(v);
+                this.fireEvent('fileselected', this, v);    
+            }
+        }); 
+    },
+    
+    createFileInput : function() {
+        this.fileInput = this.wrap.createChild({
+            id: this.getFileInputId(),
+            name: this.name||this.getId(),
+            cls: 'x-form-file',
+            tag: 'input',
+            type: 'file',
+            size: 1
+        });
+    },
+    
+    reset : function(){
+        this.fileInput.remove();
+        this.createFileInput();
+        this.bindListeners();
+        Ext.ux.form.FileUploadField.superclass.reset.call(this);
     },
 
     // private
@@ -705,20 +745,27 @@ Ext.ux.form.FileUploadField = Ext.extend(Ext.form.TextField,  {
         Ext.ux.form.FileUploadField.superclass.onDestroy.call(this);
         Ext.destroy(this.fileInput, this.button, this.wrap);
     },
+    
+    onDisable: function(){
+        Ext.ux.form.FileUploadField.superclass.onDisable.call(this);
+        this.doDisable(true);
+    },
+    
+    onEnable: function(){
+        Ext.ux.form.FileUploadField.superclass.onEnable.call(this);
+        this.doDisable(false);
 
-
-    // private
-    preFocus : Ext.emptyFn,
-
+    },
+    
     // private
-    getResizeEl : function(){
-        return this.wrap;
+    doDisable: function(disabled){
+        this.fileInput.dom.disabled = disabled;
+        this.button.setDisabled(disabled);
     },
 
+
     // private
-    getPositionEl : function(){
-        return this.wrap;
-    },
+    preFocus : Ext.emptyFn,
 
     // private
     alignErrorIcon : function(){
@@ -731,1020 +778,2305 @@ Ext.reg('fileuploadfield', Ext.ux.form.FileUploadField);
 
 // backwards compat
 Ext.form.FileUploadField = Ext.ux.form.FileUploadField;
-(function(){\r
-Ext.ns('Ext.a11y');\r
+/**\r
+ * @class Ext.ux.GMapPanel\r
+ * @extends Ext.Panel\r
+ * @author Shea Frederick\r
+ */\r
+Ext.ux.GMapPanel = Ext.extend(Ext.Panel, {\r
+    initComponent : function(){\r
+        \r
+        var defConfig = {\r
+            plain: true,\r
+            zoomLevel: 3,\r
+            yaw: 180,\r
+            pitch: 0,\r
+            zoom: 0,\r
+            gmapType: 'map',\r
+            border: false\r
+        };\r
+        \r
+        Ext.applyIf(this,defConfig);\r
+        \r
+        Ext.ux.GMapPanel.superclass.initComponent.call(this);        \r
 \r
-Ext.a11y.Frame = Ext.extend(Object, {\r
-    initialized: false,\r
-    \r
-    constructor: function(size, color){\r
-        this.setSize(size || 1);\r
-        this.setColor(color || '15428B');\r
     },\r
-    \r
-    init: function(){\r
-        if (!this.initialized) {\r
-            this.sides = [];\r
-            \r
-            var s, i;\r
-            \r
-            this.ct = Ext.DomHelper.append(document.body, {\r
-                cls: 'x-a11y-focusframe'\r
-            }, true);\r
-            \r
-            for (i = 0; i < 4; i++) {\r
-                s = Ext.DomHelper.append(this.ct, {\r
-                    cls: 'x-a11y-focusframe-side',\r
-                    style: 'background-color: #' + this.color\r
-                }, true);\r
-                s.visibilityMode = Ext.Element.DISPLAY;\r
-                this.sides.push(s);\r
-            }\r
-            \r
-            this.frameTask = new Ext.util.DelayedTask(function(el){\r
-                var newEl = Ext.get(el);\r
-                if (newEl != this.curEl) {\r
-                    var w = newEl.getWidth();\r
-                    var h = newEl.getHeight();\r
-                    this.sides[0].show().setSize(w, this.size).anchorTo(el, 'tl', [0, -1]);\r
-                    this.sides[2].show().setSize(w, this.size).anchorTo(el, 'bl', [0, -1]);\r
-                    this.sides[1].show().setSize(this.size, h).anchorTo(el, 'tr', [-1, 0]);\r
-                    this.sides[3].show().setSize(this.size, h).anchorTo(el, 'tl', [-1, 0]);\r
-                    this.curEl = newEl;\r
+    afterRender : function(){\r
+        \r
+        var wh = this.ownerCt.getSize();\r
+        Ext.applyIf(this, wh);\r
+        \r
+        Ext.ux.GMapPanel.superclass.afterRender.call(this);    \r
+        \r
+        if (this.gmapType === 'map'){\r
+            this.gmap = new GMap2(this.body.dom);\r
+        }\r
+        \r
+        if (this.gmapType === 'panorama'){\r
+            this.gmap = new GStreetviewPanorama(this.body.dom);\r
+        }\r
+        \r
+        if (typeof this.addControl == 'object' && this.gmapType === 'map') {\r
+            this.gmap.addControl(this.addControl);\r
+        }\r
+        \r
+        if (typeof this.setCenter === 'object') {\r
+            if (typeof this.setCenter.geoCodeAddr === 'string'){\r
+                this.geoCodeLookup(this.setCenter.geoCodeAddr);\r
+            }else{\r
+                if (this.gmapType === 'map'){\r
+                    var point = new GLatLng(this.setCenter.lat,this.setCenter.lng);\r
+                    this.gmap.setCenter(point, this.zoomLevel);    \r
                 }\r
-            }, this);\r
-            \r
-            this.unframeTask = new Ext.util.DelayedTask(function(){\r
-                if (this.initialized) {\r
-                    this.sides[0].hide();\r
-                    this.sides[1].hide();\r
-                    this.sides[2].hide();\r
-                    this.sides[3].hide();\r
-                    this.curEl = null;\r
+                if (typeof this.setCenter.marker === 'object' && typeof point === 'object'){\r
+                    this.addMarker(point,this.setCenter.marker,this.setCenter.marker.clear);\r
                 }\r
-            }, this);\r
-            this.initialized = true;\r
+            }\r
+            if (this.gmapType === 'panorama'){\r
+                this.gmap.setLocationAndPOV(new GLatLng(this.setCenter.lat,this.setCenter.lng), {yaw: this.yaw, pitch: this.pitch, zoom: this.zoom});\r
+            }\r
         }\r
+\r
+        GEvent.bind(this.gmap, 'load', this, function(){\r
+            this.onMapReady();\r
+        });\r
+\r
     },\r
-    \r
-    frame: function(el){\r
-        this.init();\r
-        this.unframeTask.cancel();\r
-        this.frameTask.delay(2, false, false, [el]);\r
-    },\r
-    \r
-    unframe: function(){\r
-        this.init();\r
-        this.unframeTask.delay(2);\r
-    },\r
-    \r
-    setSize: function(size){\r
-        this.size = size;\r
+    onMapReady : function(){\r
+        this.addMarkers(this.markers);\r
+        this.addMapControls();\r
+        this.addOptions();  \r
     },\r
-    \r
-    setColor: function(color){\r
-        this.color = color;\r
-    }\r
-});\r
-\r
-Ext.a11y.FocusFrame = new Ext.a11y.Frame(2, '15428B');\r
-Ext.a11y.RelayFrame = new Ext.a11y.Frame(1, '6B8CBF');\r
+    onResize : function(w, h){\r
 \r
-Ext.a11y.Focusable = Ext.extend(Ext.util.Observable, {\r
-    constructor: function(el, relayTo, noFrame, frameEl){\r
-        Ext.a11y.Focusable.superclass.constructor.call(this);\r
+        if (typeof this.getMap() == 'object') {\r
+            this.gmap.checkResize();\r
+        }\r
         \r
-        this.addEvents('focus', 'blur', 'left', 'right', 'up', 'down', 'esc', 'enter', 'space');\r
+        Ext.ux.GMapPanel.superclass.onResize.call(this, w, h);\r
+\r
+    },\r
+    setSize : function(width, height, animate){\r
         \r
-        if (el instanceof Ext.Component) {\r
-            this.el = el.el;\r
-            this.setComponent(el);\r
-        }\r
-        else {\r
-            this.el = Ext.get(el);\r
-            this.setComponent(null);\r
+        if (typeof this.getMap() == 'object') {\r
+            this.gmap.checkResize();\r
         }\r
         \r
-        this.setRelayTo(relayTo)\r
-        this.setNoFrame(noFrame);\r
-        this.setFrameEl(frameEl);\r
-        \r
-        this.init();\r
+        Ext.ux.GMapPanel.superclass.setSize.call(this, width, height, animate);\r
         \r
-        Ext.a11y.FocusMgr.register(this);\r
-    },\r
-    \r
-    init: function(){\r
-        this.el.dom.tabIndex = '1';\r
-        this.el.addClass('x-a11y-focusable');\r
-        this.el.on({\r
-            focus: this.onFocus,\r
-            blur: this.onBlur,\r
-            keydown: this.onKeyDown,\r
-            scope: this\r
-        });\r
-    },\r
-    \r
-    setRelayTo: function(relayTo){\r
-        this.relayTo = relayTo ? Ext.a11y.FocusMgr.get(relayTo) : null;\r
-    },\r
-    \r
-    setNoFrame: function(noFrame){\r
-        this.noFrame = (noFrame === true) ? true : false;\r
-    },\r
-    \r
-    setFrameEl: function(frameEl){\r
-        this.frameEl = frameEl && Ext.get(frameEl) || this.el;\r
-    },\r
-    \r
-    setComponent: function(cmp){\r
-        this.component = cmp || null;\r
     },\r
-    \r
-    onKeyDown: function(e, t){\r
-        var k = e.getKey(), SK = Ext.a11y.Focusable.SpecialKeys, ret, tf;\r
+    getMap : function(){\r
         \r
-        tf = (t !== this.el.dom) ? Ext.a11y.FocusMgr.get(t, true) : this;\r
-        if (!tf) {\r
-            // this can happen when you are on a focused item within a panel body\r
-            // that is not a Ext.a11y.Focusable\r
-            tf = Ext.a11y.FocusMgr.get(Ext.fly(t).parent('.x-a11y-focusable'));\r
-        }\r
+        return this.gmap;\r
         \r
-        if (SK[k] !== undefined) {\r
-            ret = this.fireEvent(SK[k], e, t, tf, this);\r
-        }\r
-        if (ret === false || this.fireEvent('keydown', e, t, tf, this) === false) {\r
-            e.stopEvent();\r
-        }\r
     },\r
-    \r
-    focus: function(){\r
-        this.el.dom.focus();\r
+    getCenter : function(){\r
+        \r
+        return this.getMap().getCenter();\r
+        \r
     },\r
-    \r
-    blur: function(){\r
-        this.el.dom.blur();\r
+    getCenterLatLng : function(){\r
+        \r
+        var ll = this.getCenter();\r
+        return {lat: ll.lat(), lng: ll.lng()};\r
+        \r
     },\r
-    \r
-    onFocus: function(e, t){\r
-        this.el.addClass('x-a11y-focused');\r
-        if (this.relayTo) {\r
-            this.relayTo.el.addClass('x-a11y-focused-relay');\r
-            if (!this.relayTo.noFrame) {\r
-                Ext.a11y.FocusFrame.frame(this.relayTo.frameEl);\r
-            }\r
-            if (!this.noFrame) {\r
-                Ext.a11y.RelayFrame.frame(this.frameEl);\r
-            }\r
-        }\r
-        else {\r
-            if (!this.noFrame) {\r
-                Ext.a11y.FocusFrame.frame(this.frameEl);\r
+    addMarkers : function(markers) {\r
+        \r
+        if (Ext.isArray(markers)){\r
+            for (var i = 0; i < markers.length; i++) {\r
+                var mkr_point = new GLatLng(markers[i].lat,markers[i].lng);\r
+                this.addMarker(mkr_point,markers[i].marker,false,markers[i].setCenter, markers[i].listeners);\r
             }\r
         }\r
         \r
-        this.fireEvent('focus', e, t, this);\r
     },\r
-    \r
-    onBlur: function(e, t){\r
-        if (this.relayTo) {\r
-            this.relayTo.el.removeClass('x-a11y-focused-relay');\r
-            Ext.a11y.RelayFrame.unframe();\r
+    addMarker : function(point, marker, clear, center, listeners){\r
+        \r
+        Ext.applyIf(marker,G_DEFAULT_ICON);\r
+\r
+        if (clear === true){\r
+            this.getMap().clearOverlays();\r
         }\r
-        this.el.removeClass('x-a11y-focused');\r
-        Ext.a11y.FocusFrame.unframe();\r
-        this.fireEvent('blur', e, t, this);\r
-    },\r
-    \r
-    destroy: function(){\r
-        this.el.un('keydown', this.onKeyDown);\r
-        this.el.un('focus', this.onFocus);\r
-        this.el.un('blur', this.onBlur);\r
-        this.el.removeClass('x-a11y-focusable');\r
-        this.el.removeClass('x-a11y-focused');\r
-        if (this.relayTo) {\r
-            this.relayTo.el.removeClass('x-a11y-focused-relay');\r
+        if (center === true) {\r
+            this.getMap().setCenter(point, this.zoomLevel);\r
         }\r
-    }\r
-});\r
 \r
-Ext.a11y.FocusItem = Ext.extend(Object, {\r
-    constructor: function(el, enableTabbing){\r
-        Ext.a11y.FocusItem.superclass.constructor.call(this);\r
-        \r
-        this.el = Ext.get(el);\r
-        this.fi = new Ext.a11y.Focusable(el);\r
-        this.fi.setComponent(this);\r
-        \r
-        this.fi.on('tab', this.onTab, this);\r
-        \r
-        this.enableTabbing = enableTabbing === true ? true : false;\r
-    },\r
-    \r
-    getEnterItem: function(){\r
-        if (this.enableTabbing) {\r
-            var items = this.getFocusItems();\r
-            if (items && items.length) {\r
-                return items[0];\r
+        var mark = new GMarker(point,marker);\r
+        if (typeof listeners === 'object'){\r
+            for (evt in listeners) {\r
+                GEvent.bind(mark, evt, this, listeners[evt]);\r
             }\r
         }\r
+        this.getMap().addOverlay(mark);\r
+\r
     },\r
-    \r
-    getFocusItems: function(){\r
-        if (this.enableTabbing) {\r
-            return this.el.query('a, button, input, select');\r
-        }\r
-        return null;\r
-    },\r
-    \r
-    onTab: function(e, t){\r
-        var items = this.getFocusItems(), i;\r
+    addMapControls : function(){\r
         \r
-        if (items && items.length && (i = items.indexOf(t)) !== -1) {\r
-            if (e.shiftKey && i > 0) {\r
-                e.stopEvent();\r
-                items[i - 1].focus();\r
-                Ext.a11y.FocusFrame.frame.defer(20, Ext.a11y.FocusFrame, [this.el]);\r
-                return;\r
-            }\r
-            else \r
-                if (!e.shiftKey && i < items.length - 1) {\r
-                    e.stopEvent();\r
-                    items[i + 1].focus();\r
-                    Ext.a11y.FocusFrame.frame.defer(20, Ext.a11y.FocusFrame, [this.el]);\r
-                    return;\r
+        if (this.gmapType === 'map') {\r
+            if (Ext.isArray(this.mapControls)) {\r
+                for(i=0;i<this.mapControls.length;i++){\r
+                    this.addMapControl(this.mapControls[i]);\r
                 }\r
-        }\r
-    },\r
-    \r
-    focus: function(){\r
-        if (this.enableTabbing) {\r
-            var items = this.getFocusItems();\r
-            if (items && items.length) {\r
-                items[0].focus();\r
-                Ext.a11y.FocusFrame.frame.defer(20, Ext.a11y.FocusFrame, [this.el]);\r
-                return;\r
+            }else if(typeof this.mapControls === 'string'){\r
+                this.addMapControl(this.mapControls);\r
+            }else if(typeof this.mapControls === 'object'){\r
+                this.getMap().addControl(this.mapControls);\r
             }\r
         }\r
-        this.fi.focus();\r
-    },\r
-    \r
-    blur: function(){\r
-        this.fi.blur();\r
-    }\r
-});\r
-\r
-Ext.a11y.FocusMgr = function(){\r
-    var all = new Ext.util.MixedCollection();\r
-    \r
-    return {\r
-        register: function(f){\r
-            all.add(f.el && Ext.id(f.el), f);\r
-        },\r
         \r
-        unregister: function(f){\r
-            all.remove(f);\r
-        },\r
-        \r
-        get: function(el, noCreate){\r
-            return all.get(Ext.id(el)) || (noCreate ? false : new Ext.a11y.Focusable(el));\r
-        },\r
-        \r
-        all: all\r
-    }\r
-}();\r
-\r
-Ext.a11y.Focusable.SpecialKeys = {};\r
-Ext.a11y.Focusable.SpecialKeys[Ext.EventObjectImpl.prototype.LEFT] = 'left';\r
-Ext.a11y.Focusable.SpecialKeys[Ext.EventObjectImpl.prototype.RIGHT] = 'right';\r
-Ext.a11y.Focusable.SpecialKeys[Ext.EventObjectImpl.prototype.DOWN] = 'down';\r
-Ext.a11y.Focusable.SpecialKeys[Ext.EventObjectImpl.prototype.UP] = 'up';\r
-Ext.a11y.Focusable.SpecialKeys[Ext.EventObjectImpl.prototype.ESC] = 'esc';\r
-Ext.a11y.Focusable.SpecialKeys[Ext.EventObjectImpl.prototype.ENTER] = 'enter';\r
-Ext.a11y.Focusable.SpecialKeys[Ext.EventObjectImpl.prototype.SPACE] = 'space';\r
-Ext.a11y.Focusable.SpecialKeys[Ext.EventObjectImpl.prototype.TAB] = 'tab';\r
-\r
-// we use the new observeClass method to fire our new initFocus method on components\r
-Ext.util.Observable.observeClass(Ext.Component);\r
-Ext.Component.on('render', function(cmp){\r
-    cmp.initFocus();\r
-    cmp.initARIA();\r
-});\r
-Ext.override(Ext.Component, {\r
-    initFocus: Ext.emptyFn,\r
-    initARIA: Ext.emptyFn\r
-});\r
-\r
-Ext.override(Ext.Container, {\r
-    isFocusable: true,\r
-    noFocus: false,\r
-    \r
-    // private\r
-    initFocus: function(){\r
-        if (!this.fi && !this.noFocus) {\r
-            this.fi = new Ext.a11y.Focusable(this);\r
-        }\r
-        this.mon(this.fi, {\r
-            focus: this.onFocus,\r
-            blur: this.onBlur,\r
-            tab: this.onTab,\r
-            enter: this.onEnter,\r
-            esc: this.onEsc,\r
-            scope: this\r
-        });\r
+    },\r
+    addMapControl : function(mc){\r
         \r
-        if (this.hidden) {\r
-            this.isFocusable = false;\r
-        }\r
+        var mcf = window[mc];\r
+        if (typeof mcf === 'function') {\r
+            this.getMap().addControl(new mcf());\r
+        }    \r
         \r
-        this.on('show', function(){\r
-            this.isFocusable = true;\r
-        }, this);\r
-        this.on('hide', function(){\r
-            this.isFocusable = false;\r
-        }, this);\r
-    },\r
-    \r
-    focus: function(){\r
-        this.fi.focus();\r
     },\r
-    \r
-    blur: function(){\r
-        this.fi.blur();\r
+    addOptions : function(){\r
+        \r
+        if (Ext.isArray(this.mapConfOpts)) {\r
+            var mc;\r
+            for(i=0;i<this.mapConfOpts.length;i++){\r
+                this.addOption(this.mapConfOpts[i]);\r
+            }\r
+        }else if(typeof this.mapConfOpts === 'string'){\r
+            this.addOption(this.mapConfOpts);\r
+        }        \r
+        \r
     },\r
-    \r
-    enter: function(){\r
-        var eitem = this.getEnterItem();\r
-        if (eitem) {\r
-            eitem.focus();\r
-        }\r
+    addOption : function(mc){\r
+        \r
+        var mcf = this.getMap()[mc];\r
+        if (typeof mcf === 'function') {\r
+            this.getMap()[mc]();\r
+        }    \r
+        \r
     },\r
-    \r
-    onFocus: Ext.emptyFn,\r
-    onBlur: Ext.emptyFn,\r
-    \r
-    onTab: function(e, t, tf){\r
-        var rf = tf.relayTo || tf;\r
-        if (rf.component && rf.component !== this) {\r
-            e.stopEvent();\r
-            var item = e.shiftKey ? this.getPreviousFocus(rf.component) : this.getNextFocus(rf.component);\r
-            item.focus();\r
-        }\r
+    geoCodeLookup : function(addr) {\r
+        \r
+        this.geocoder = new GClientGeocoder();\r
+        this.geocoder.getLocations(addr, this.addAddressToMap.createDelegate(this));\r
+        \r
     },\r
-    \r
-    onEnter: function(e, t, tf){\r
-        // check to see if enter is pressed while "on" the panel\r
-        if (tf.component && tf.component === this) {\r
-            e.stopEvent();\r
-            this.enter();\r
+    addAddressToMap : function(response) {\r
+        \r
+        if (!response || response.Status.code != 200) {\r
+            Ext.MessageBox.alert('Error', 'Code '+response.Status.code+' Error Returned');\r
+        }else{\r
+            place = response.Placemark[0];\r
+            addressinfo = place.AddressDetails;\r
+            accuracy = addressinfo.Accuracy;\r
+            if (accuracy === 0) {\r
+                Ext.MessageBox.alert('Unable to Locate Address', 'Unable to Locate the Address you provided');\r
+            }else{\r
+                if (accuracy < 7) {\r
+                    Ext.MessageBox.alert('Address Accuracy', 'The address provided has a low accuracy.<br><br>Level '+accuracy+' Accuracy (8 = Exact Match, 1 = Vague Match)');\r
+                }else{\r
+                    point = new GLatLng(place.Point.coordinates[1], place.Point.coordinates[0]);\r
+                    if (typeof this.setCenter.marker === 'object' && typeof point === 'object'){\r
+                        this.addMarker(point,this.setCenter.marker,this.setCenter.marker.clear,true, this.setCenter.listeners);\r
+                    }\r
+                }\r
+            }\r
         }\r
-        e.stopPropagation();\r
-    },\r
-    \r
-    onEsc: function(e, t){\r
-        e.preventDefault();\r
         \r
-        // check to see if esc is pressed while "inside" the panel\r
-        // or while "on" the panel\r
-        if (t === this.el.dom) {\r
-            // "on" the panel, check if this panel has an owner panel and focus that\r
-            // we dont stop the event in this case so that this same check will be\r
-            // done for this ownerCt\r
-            if (this.ownerCt) {\r
-                this.ownerCt.focus();\r
+    }\r
\r
+});\r
+\r
+Ext.reg('gmappanel', Ext.ux.GMapPanel); Ext.namespace('Ext.ux.grid');\r
+\r
+/**\r
+ * @class Ext.ux.grid.GridFilters\r
+ * @extends Ext.util.Observable\r
+ * <p>GridFilter is a plugin (<code>ptype='gridfilters'</code>) for grids that\r
+ * allow for a slightly more robust representation of filtering than what is\r
+ * provided by the default store.</p>\r
+ * <p>Filtering is adjusted by the user using the grid's column header menu\r
+ * (this menu can be disabled through configuration). Through this menu users\r
+ * can configure, enable, and disable filters for each column.</p>\r
+ * <p><b><u>Features:</u></b></p>\r
+ * <div class="mdetail-params"><ul>\r
+ * <li><b>Filtering implementations</b> :\r
+ * <div class="sub-desc">\r
+ * Default filtering for Strings, Numeric Ranges, Date Ranges, Lists (which can\r
+ * be backed by a Ext.data.Store), and Boolean. Additional custom filter types\r
+ * and menus are easily created by extending Ext.ux.grid.filter.Filter.\r
+ * </div></li>\r
+ * <li><b>Graphical indicators</b> :\r
+ * <div class="sub-desc">\r
+ * Columns that are filtered have {@link #filterCls a configurable css class}\r
+ * applied to the column headers.\r
+ * </div></li>\r
+ * <li><b>Paging</b> :\r
+ * <div class="sub-desc">\r
+ * If specified as a plugin to the grid's configured PagingToolbar, the current page\r
+ * will be reset to page 1 whenever you update the filters.\r
+ * </div></li>\r
+ * <li><b>Automatic Reconfiguration</b> :\r
+ * <div class="sub-desc">\r
+ * Filters automatically reconfigure when the grid 'reconfigure' event fires.\r
+ * </div></li>\r
+ * <li><b>Stateful</b> :\r
+ * Filter information will be persisted across page loads by specifying a\r
+ * <code>stateId</code> in the Grid configuration.\r
+ * <div class="sub-desc">\r
+ * The filter collection binds to the\r
+ * <code>{@link Ext.grid.GridPanel#beforestaterestore beforestaterestore}</code>\r
+ * and <code>{@link Ext.grid.GridPanel#beforestatesave beforestatesave}</code>\r
+ * events in order to be stateful. \r
+ * </div></li>\r
+ * <li><b>Grid Changes</b> :\r
+ * <div class="sub-desc"><ul>\r
+ * <li>A <code>filters</code> <i>property</i> is added to the grid pointing to\r
+ * this plugin.</li>\r
+ * <li>A <code>filterupdate</code> <i>event</i> is added to the grid and is\r
+ * fired upon onStateChange completion.</li>\r
+ * </ul></div></li>\r
+ * <li><b>Server side code examples</b> :\r
+ * <div class="sub-desc"><ul>\r
+ * <li><a href="http://www.vinylfox.com/extjs/grid-filter-php-backend-code.php">PHP</a> - (Thanks VinylFox)</li>\r
+ * <li><a href="http://extjs.com/forum/showthread.php?p=77326#post77326">Ruby on Rails</a> - (Thanks Zyclops)</li>\r
+ * <li><a href="http://extjs.com/forum/showthread.php?p=176596#post176596">Ruby on Rails</a> - (Thanks Rotomaul)</li>\r
+ * <li><a href="http://www.debatablybeta.com/posts/using-extjss-grid-filtering-with-django/">Python</a> - (Thanks Matt)</li>\r
+ * <li><a href="http://mcantrell.wordpress.com/2008/08/22/extjs-grids-and-grails/">Grails</a> - (Thanks Mike)</li>\r
+ * </ul></div></li>\r
+ * </ul></div>\r
+ * <p><b><u>Example usage:</u></b></p>\r
+ * <pre><code>    \r
+var store = new Ext.data.GroupingStore({\r
+    ...\r
+});\r
\r
+var filters = new Ext.ux.grid.GridFilters({\r
+    autoReload: false, //don&#39;t reload automatically\r
+    local: true, //only filter locally\r
+    // filters may be configured through the plugin,\r
+    // or in the column definition within the column model configuration\r
+    filters: [{\r
+        type: 'numeric',\r
+        dataIndex: 'id'\r
+    }, {\r
+        type: 'string',\r
+        dataIndex: 'name'\r
+    }, {\r
+        type: 'numeric',\r
+        dataIndex: 'price'\r
+    }, {\r
+        type: 'date',\r
+        dataIndex: 'dateAdded'\r
+    }, {\r
+        type: 'list',\r
+        dataIndex: 'size',\r
+        options: ['extra small', 'small', 'medium', 'large', 'extra large'],\r
+        phpMode: true\r
+    }, {\r
+        type: 'boolean',\r
+        dataIndex: 'visible'\r
+    }]\r
+});\r
+var cm = new Ext.grid.ColumnModel([{\r
+    ...\r
+}]);\r
\r
+var grid = new Ext.grid.GridPanel({\r
+     ds: store,\r
+     cm: cm,\r
+     view: new Ext.grid.GroupingView(),\r
+     plugins: [filters],\r
+     height: 400,\r
+     width: 700,\r
+     bbar: new Ext.PagingToolbar({\r
+         store: store,\r
+         pageSize: 15,\r
+         plugins: [filters] //reset page to page 1 if filters change\r
+     })\r
+ });\r
+\r
+store.load({params: {start: 0, limit: 15}});\r
+\r
+// a filters property is added to the grid\r
+grid.filters\r
+ * </code></pre>\r
+ */\r
+Ext.ux.grid.GridFilters = Ext.extend(Ext.util.Observable, {\r
+    /**\r
+     * @cfg {Boolean} autoReload\r
+     * Defaults to true, reloading the datasource when a filter change happens.\r
+     * Set this to false to prevent the datastore from being reloaded if there\r
+     * are changes to the filters.  See <code>{@link updateBuffer}</code>.\r
+     */\r
+    autoReload : true,\r
+    /**\r
+     * @cfg {Boolean} encode\r
+     * Specify true for {@link #buildQuery} to use Ext.util.JSON.encode to\r
+     * encode the filter query parameter sent with a remote request.\r
+     * Defaults to false.\r
+     */\r
+    /**\r
+     * @cfg {Array} filters\r
+     * An Array of filters config objects. Refer to each filter type class for\r
+     * configuration details specific to each filter type. Filters for Strings,\r
+     * Numeric Ranges, Date Ranges, Lists, and Boolean are the standard filters\r
+     * available.\r
+     */\r
+    /**\r
+     * @cfg {String} filterCls\r
+     * The css class to be applied to column headers with active filters.\r
+     * Defaults to <tt>'ux-filterd-column'</tt>.\r
+     */\r
+    filterCls : 'ux-filtered-column',\r
+    /**\r
+     * @cfg {Boolean} local\r
+     * <tt>true</tt> to use Ext.data.Store filter functions (local filtering)\r
+     * instead of the default (<tt>false</tt>) server side filtering.\r
+     */\r
+    local : false,\r
+    /**\r
+     * @cfg {String} menuFilterText\r
+     * defaults to <tt>'Filters'</tt>.\r
+     */\r
+    menuFilterText : 'Filters',\r
+    /**\r
+     * @cfg {String} paramPrefix\r
+     * The url parameter prefix for the filters.\r
+     * Defaults to <tt>'filter'</tt>.\r
+     */\r
+    paramPrefix : 'filter',\r
+    /**\r
+     * @cfg {Boolean} showMenu\r
+     * Defaults to true, including a filter submenu in the default header menu.\r
+     */\r
+    showMenu : true,\r
+    /**\r
+     * @cfg {String} stateId\r
+     * Name of the value to be used to store state information.\r
+     */\r
+    stateId : undefined,\r
+    /**\r
+     * @cfg {Integer} updateBuffer\r
+     * Number of milliseconds to defer store updates since the last filter change.\r
+     */\r
+    updateBuffer : 500,\r
+\r
+    /** @private */\r
+    constructor : function (config) {          \r
+        this.deferredUpdate = new Ext.util.DelayedTask(this.reload, this);\r
+        this.filters = new Ext.util.MixedCollection();\r
+        this.filters.getKey = function (o) {\r
+            return o ? o.dataIndex : null;\r
+        };\r
+        this.addFilters(config.filters);\r
+        delete config.filters;\r
+        Ext.apply(this, config);\r
+    },\r
+\r
+    /** @private */\r
+    init : function (grid) {\r
+        if (grid instanceof Ext.grid.GridPanel) {\r
+            this.grid = grid;\r
+\r
+            this.bindStore(this.grid.getStore(), true);\r
+          \r
+            this.grid.filters = this;\r
+             \r
+            this.grid.addEvents({'filterupdate': true});\r
+              \r
+            grid.on({\r
+                scope: this,\r
+                beforestaterestore: this.applyState,\r
+                beforestatesave: this.saveState,\r
+                beforedestroy: this.destroy,\r
+                reconfigure: this.onReconfigure\r
+            });\r
+            \r
+            if (grid.rendered){\r
+                this.onRender();\r
+            } else {\r
+                grid.on({\r
+                    scope: this,\r
+                    single: true,\r
+                    render: this.onRender\r
+                });\r
             }\r
+                      \r
+        } else if (grid instanceof Ext.PagingToolbar) {\r
+            this.toolbar = grid;\r
         }\r
-        else {\r
-            // we were inside the panel when esc was pressed,\r
-            // so go back "on" the panel\r
-            if (this.ownerCt && this.ownerCt.isFocusable) {\r
-                var si = this.ownerCt.getFocusItems();\r
-                \r
-                if (si && si.getCount() > 1) {\r
-                    e.stopEvent();\r
+    },\r
+        \r
+    /**\r
+     * @private\r
+     * Handler for the grid's beforestaterestore event (fires before the state of the\r
+     * grid is restored).\r
+     * @param {Object} grid The grid object\r
+     * @param {Object} state The hash of state values returned from the StateProvider.\r
+     */   \r
+    applyState : function (grid, state) {\r
+        var key, filter;\r
+        this.applyingState = true;\r
+        this.clearFilters();\r
+        if (state.filters) {\r
+            for (key in state.filters) {\r
+                filter = this.filters.get(key);\r
+                if (filter) {\r
+                    filter.setValue(state.filters[key]);\r
+                    filter.setActive(true);\r
                 }\r
             }\r
-            this.focus();\r
         }\r
+        this.deferredUpdate.cancel();\r
+        if (this.local) {\r
+            this.reload();\r
+        }\r
+        delete this.applyingState;\r
     },\r
     \r
-    getFocusItems: function(){\r
-        return this.items &&\r
-        this.items.filterBy(function(o){\r
-            return o.isFocusable;\r
-        }) ||\r
-        null;\r
-    },\r
-    \r
-    getEnterItem: function(){\r
-        var ci = this.getFocusItems(), length = ci ? ci.getCount() : 0;\r
-        \r
-        if (length === 1) {\r
-            return ci.first().getEnterItem && ci.first().getEnterItem() || ci.first();\r
-        }\r
-        else \r
-            if (length > 1) {\r
-                return ci.first();\r
+    /**\r
+     * Saves the state of all active filters\r
+     * @param {Object} grid\r
+     * @param {Object} state\r
+     * @return {Boolean}\r
+     */\r
+    saveState : function (grid, state) {\r
+        var filters = {};\r
+        this.filters.each(function (filter) {\r
+            if (filter.active) {\r
+                filters[filter.dataIndex] = filter.getValue();\r
             }\r
+        });\r
+        return (state.filters = filters);\r
     },\r
     \r
-    getNextFocus: function(current){\r
-        var items = this.getFocusItems(), next = current, i = items.indexOf(current), length = items.getCount();\r
-        \r
-        if (i === length - 1) {\r
-            next = items.first();\r
+    /**\r
+     * @private\r
+     * Handler called when the grid is rendered\r
+     */    \r
+    onRender : function () {\r
+        this.grid.getView().on('refresh', this.onRefresh, this);\r
+        this.createMenu();\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Handler called by the grid 'beforedestroy' event\r
+     */    \r
+    destroy : function () {\r
+        this.removeAll();\r
+        this.purgeListeners();\r
+\r
+        if(this.filterMenu){\r
+            Ext.menu.MenuMgr.unregister(this.filterMenu);\r
+            this.filterMenu.destroy();\r
+             this.filterMenu = this.menu.menu = null;            \r
         }\r
-        else {\r
-            next = items.get(i + 1);\r
+    },\r
+\r
+    /**\r
+     * Remove all filters, permanently destroying them.\r
+     */    \r
+    removeAll : function () {\r
+        if(this.filters){\r
+            Ext.destroy.apply(Ext, this.filters.items);\r
+            // remove all items from the collection \r
+            this.filters.clear();\r
         }\r
-        return next;\r
     },\r
-    \r
-    getPreviousFocus: function(current){\r
-        var items = this.getFocusItems(), prev = current, i = items.indexOf(current), length = items.getCount();\r
-        \r
-        if (i === 0) {\r
-            prev = items.last();\r
+\r
+\r
+    /**\r
+     * Changes the data store bound to this view and refreshes it.\r
+     * @param {Store} store The store to bind to this view\r
+     */\r
+    bindStore : function(store, initial){\r
+        if(!initial && this.store){\r
+            if (this.local) {\r
+                store.un('load', this.onLoad, this);\r
+            } else {\r
+                store.un('beforeload', this.onBeforeLoad, this);\r
+            }\r
         }\r
-        else {\r
-            prev = items.get(i - 1);\r
+        if(store){\r
+            if (this.local) {\r
+                store.on('load', this.onLoad, this);\r
+            } else {\r
+                store.on('beforeload', this.onBeforeLoad, this);\r
+            }\r
         }\r
-        return prev;\r
+        this.store = store;\r
     },\r
-    \r
-    getFocusable : function() {\r
-        return this.fi;\r
-    }\r
-});\r
 \r
-Ext.override(Ext.Panel, {\r
     /**\r
-     * @cfg {Boolean} enableTabbing <tt>true</tt> to enable tabbing. Default is <tt>false</tt>.\r
-     */        \r
-    getFocusItems: function(){\r
-        // items gets all the items inside the body\r
-        var items = Ext.Panel.superclass.getFocusItems.call(this), bodyFocus = null;\r
-        \r
-        if (!items) {\r
-            items = new Ext.util.MixedCollection();\r
-            this.bodyFocus = this.bodyFocus || new Ext.a11y.FocusItem(this.body, this.enableTabbing);\r
-            items.add('body', this.bodyFocus);\r
-        }\r
-        // but panels can also have tbar, bbar, fbar\r
-        if (this.tbar && this.topToolbar) {\r
-            items.insert(0, this.topToolbar);\r
+     * @private\r
+     * Handler called when the grid reconfigure event fires\r
+     */    \r
+    onReconfigure : function () {\r
+        this.bindStore(this.grid.getStore());\r
+        this.store.clearFilter();\r
+        this.removeAll();\r
+        this.addFilters(this.grid.getColumnModel());\r
+        this.updateColumnHeadings();\r
+    },\r
+\r
+    createMenu : function () {\r
+        var view = this.grid.getView(),\r
+            hmenu = view.hmenu;\r
+\r
+        if (this.showMenu && hmenu) {\r
+            \r
+            this.sep  = hmenu.addSeparator();\r
+            this.filterMenu = new Ext.menu.Menu({\r
+                id: this.grid.id + '-filters-menu'\r
+            }); \r
+            this.menu = hmenu.add({\r
+                checked: false,\r
+                itemId: 'filters',\r
+                text: this.menuFilterText,\r
+                menu: this.filterMenu\r
+            });\r
+\r
+            this.menu.on({\r
+                scope: this,\r
+                checkchange: this.onCheckChange,\r
+                beforecheckchange: this.onBeforeCheck\r
+            });\r
+            hmenu.on('beforeshow', this.onMenu, this);\r
         }\r
-        if (this.bbar && this.bottomToolbar) {\r
-            items.add(this.bottomToolbar);\r
+        this.updateColumnHeadings();\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Get the filter menu from the filters MixedCollection based on the clicked header\r
+     */\r
+    getMenuFilter : function () {\r
+        var view = this.grid.getView();\r
+        if (!view || view.hdCtxIndex === undefined) {\r
+            return null;\r
         }\r
-        if (this.fbar) {\r
-            items.add(this.fbar);\r
+        return this.filters.get(\r
+            view.cm.config[view.hdCtxIndex].dataIndex\r
+        );\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Handler called by the grid's hmenu beforeshow event\r
+     */    \r
+    onMenu : function (filterMenu) {\r
+        var filter = this.getMenuFilter();\r
+\r
+        if (filter) {\r
+/*            \r
+TODO: lazy rendering\r
+            if (!filter.menu) {\r
+                filter.menu = filter.createMenu();\r
+            }\r
+*/\r
+            this.menu.menu = filter.menu;\r
+            this.menu.setChecked(filter.active, false);\r
+            // disable the menu if filter.disabled explicitly set to true\r
+            this.menu.setDisabled(filter.disabled === true);\r
         }\r
         \r
-        return items;\r
-    }\r
-});\r
-\r
-Ext.override(Ext.TabPanel, {\r
-    // private\r
-    initFocus: function(){\r
-        Ext.TabPanel.superclass.initFocus.call(this);\r
-        this.mon(this.fi, {\r
-            left: this.onLeft,\r
-            right: this.onRight,\r
-            scope: this\r
-        });\r
+        this.menu.setVisible(filter !== undefined);\r
+        this.sep.setVisible(filter !== undefined);\r
     },\r
     \r
-    onLeft: function(e){\r
-        if (!this.activeTab) {\r
-            return;\r
-        }\r
-        e.stopEvent();\r
-        var prev = this.items.itemAt(this.items.indexOf(this.activeTab) - 1);\r
-        if (prev) {\r
-            this.setActiveTab(prev);\r
-        }\r
-        return false;\r
+    /** @private */\r
+    onCheckChange : function (item, value) {\r
+        this.getMenuFilter().setActive(value);\r
     },\r
     \r
-    onRight: function(e){\r
-        if (!this.activeTab) {\r
+    /** @private */\r
+    onBeforeCheck : function (check, value) {\r
+        return !value || this.getMenuFilter().isActivatable();\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Handler for all events on filters.\r
+     * @param {String} event Event name\r
+     * @param {Object} filter Standard signature of the event before the event is fired\r
+     */   \r
+    onStateChange : function (event, filter) {\r
+        if (event === 'serialize') {\r
             return;\r
         }\r
-        e.stopEvent();\r
-        var next = this.items.itemAt(this.items.indexOf(this.activeTab) + 1);\r
-        if (next) {\r
-            this.setActiveTab(next);\r
-        }\r
-        return false;\r
-    }\r
-});\r
-\r
-Ext.override(Ext.tree.TreeNodeUI, {\r
-    // private\r
-    focus: function(){\r
-        this.node.getOwnerTree().bodyFocus.focus();\r
-    }\r
-});\r
-\r
-Ext.override(Ext.tree.TreePanel, {\r
-    // private\r
-    afterRender : function(){\r
-        Ext.tree.TreePanel.superclass.afterRender.call(this);\r
-        this.root.render();\r
-        if(!this.rootVisible){\r
-            this.root.renderChildren();\r
-        }\r
-        this.bodyFocus = new Ext.a11y.FocusItem(this.body.down('.x-tree-root-ct'));\r
-        this.bodyFocus.fi.setFrameEl(this.body);\r
-    } \r
-});\r
 \r
-Ext.override(Ext.grid.GridPanel, {\r
-    initFocus: function(){\r
-        Ext.grid.GridPanel.superclass.initFocus.call(this);\r
-        this.bodyFocus = new Ext.a11y.FocusItem(this.view.focusEl);\r
-        this.bodyFocus.fi.setFrameEl(this.body);\r
-    }\r
-});\r
-\r
-Ext.override(Ext.Button, {\r
-    isFocusable: true,\r
-    noFocus: false,\r
-    \r
-    initFocus: function(){\r
-        Ext.Button.superclass.initFocus.call(this);\r
-        this.fi = this.fi || new Ext.a11y.Focusable(this.btnEl, null, null, this.el);\r
-        this.fi.setComponent(this);\r
-        \r
-        this.mon(this.fi, {\r
-            focus: this.onFocus,\r
-            blur: this.onBlur,\r
-            scope: this\r
-        });\r
-        \r
-        if (this.menu) {\r
-            this.mon(this.fi, 'down', this.showMenu, this);\r
-            this.on('menuhide', this.focus, this);\r
+        if (filter == this.getMenuFilter()) {\r
+            this.menu.setChecked(filter.active, false);\r
         }\r
-        \r
-        if (this.hidden) {\r
-            this.isFocusable = false;\r
+\r
+        if ((this.autoReload || this.local) && !this.applyingState) {\r
+            this.deferredUpdate.delay(this.updateBuffer);\r
         }\r
-        \r
-        this.on('show', function(){\r
-            this.isFocusable = true;\r
-        }, this);\r
-        this.on('hide', function(){\r
-            this.isFocusable = false;\r
-        }, this);\r
-    },\r
-    \r
-    focus: function(){\r
-        this.fi.focus();\r
+        this.updateColumnHeadings();\r
+            \r
+        if (!this.applyingState) {\r
+            this.grid.saveState();\r
+        }    \r
+        this.grid.fireEvent('filterupdate', this, filter);\r
     },\r
     \r
-    blur: function(){\r
-        this.fi.blur();\r
+    /**\r
+     * @private\r
+     * Handler for store's beforeload event when configured for remote filtering\r
+     * @param {Object} store\r
+     * @param {Object} options\r
+     */\r
+    onBeforeLoad : function (store, options) {\r
+        options.params = options.params || {};\r
+        this.cleanParams(options.params);              \r
+        var params = this.buildQuery(this.getFilterData());\r
+        Ext.apply(options.params, params);\r
     },\r
     \r
-    onFocus: function(){\r
-        if (!this.disabled) {\r
-            this.el.addClass("x-btn-focus");\r
-        }\r
+    /**\r
+     * @private\r
+     * Handler for store's load event when configured for local filtering\r
+     * @param {Object} store\r
+     * @param {Object} options\r
+     */\r
+    onLoad : function (store, options) {\r
+        store.filterBy(this.getRecordFilter());\r
     },\r
-    \r
-    onBlur: function(){\r
-        this.el.removeClass("x-btn-focus");\r
-    }\r
-});\r
 \r
-Ext.override(Ext.Toolbar, {\r
-    initFocus: function(){\r
-        Ext.Toolbar.superclass.initFocus.call(this);\r
-        this.mon(this.fi, {\r
-            left: this.onLeft,\r
-            right: this.onRight,\r
-            scope: this\r
-        });\r
-        \r
-        this.on('focus', this.onButtonFocus, this, {\r
-            stopEvent: true\r
-        });\r
+    /**\r
+     * @private\r
+     * Handler called when the grid's view is refreshed\r
+     */    \r
+    onRefresh : function () {\r
+        this.updateColumnHeadings();\r
     },\r
-    \r
-    addItem: function(item){\r
-        Ext.Toolbar.superclass.add.apply(this, arguments);\r
-        if (item.rendered && item.fi !== undefined) {\r
-            item.fi.setRelayTo(this.el);\r
-            this.relayEvents(item.fi, ['focus']);\r
-        }\r
-        else {\r
-            item.on('render', function(){\r
-                if (item.fi !== undefined) {\r
-                    item.fi.setRelayTo(this.el);\r
-                    this.relayEvents(item.fi, ['focus']);\r
+\r
+    /**\r
+     * Update the styles for the header row based on the active filters\r
+     */    \r
+    updateColumnHeadings : function () {\r
+        var view = this.grid.getView(),\r
+            hds, i, len, filter;\r
+        if (view.mainHd) {\r
+            hds = view.mainHd.select('td').removeClass(this.filterCls);\r
+            for (i = 0, len = view.cm.config.length; i < len; i++) {\r
+                filter = this.getFilter(view.cm.config[i].dataIndex);\r
+                if (filter && filter.active) {\r
+                    hds.item(i).addClass(this.filterCls);\r
                 }\r
-            }, this, {\r
-                single: true\r
-            });\r
+            }\r
         }\r
-        return item;\r
     },\r
     \r
-    onFocus: function(){\r
-        var items = this.getFocusItems();\r
-        if (items && items.getCount() > 0) {\r
-            if (this.lastFocus && items.indexOf(this.lastFocus) !== -1) {\r
-                this.lastFocus.focus();\r
-            }\r
-            else {\r
-                items.first().focus();\r
+    /** @private */\r
+    reload : function () {\r
+        if (this.local) {\r
+            this.grid.store.clearFilter(true);\r
+            this.grid.store.filterBy(this.getRecordFilter());\r
+        } else {\r
+            var start,\r
+                store = this.grid.store;\r
+            this.deferredUpdate.cancel();\r
+            if (this.toolbar) {\r
+                start = store.paramNames.start;\r
+                if (store.lastOptions && store.lastOptions.params && store.lastOptions.params[start]) {\r
+                    store.lastOptions.params[start] = 0;\r
+                }\r
             }\r
+            store.reload();\r
         }\r
     },\r
     \r
-    onButtonFocus: function(e, t, tf){\r
-        this.lastFocus = tf.component || null;\r
-    },\r
-    \r
-    onLeft: function(e, t, tf){\r
-        e.stopEvent();\r
-        this.getPreviousFocus(tf.component).focus();\r
+    /**\r
+     * Method factory that generates a record validator for the filters active at the time\r
+     * of invokation.\r
+     * @private\r
+     */\r
+    getRecordFilter : function () {\r
+        var f = [], len, i;\r
+        this.filters.each(function (filter) {\r
+            if (filter.active) {\r
+                f.push(filter);\r
+            }\r
+        });\r
+        \r
+        len = f.length;\r
+        return function (record) {\r
+            for (i = 0; i < len; i++) {\r
+                if (!f[i].validateRecord(record)) {\r
+                    return false;\r
+                }\r
+            }\r
+            return true;\r
+        };\r
     },\r
     \r
-    onRight: function(e, t, tf){\r
-        e.stopEvent();\r
-        this.getNextFocus(tf.component).focus();\r
+    /**\r
+     * Adds a filter to the collection and observes it for state change.\r
+     * @param {Object/Ext.ux.grid.filter.Filter} config A filter configuration or a filter object.\r
+     * @return {Ext.ux.grid.filter.Filter} The existing or newly created filter object.\r
+     */\r
+    addFilter : function (config) {\r
+        var Cls = this.getFilterClass(config.type),\r
+            filter = config.menu ? config : (new Cls(config));\r
+        this.filters.add(filter);\r
+        \r
+        Ext.util.Observable.capture(filter, this.onStateChange, this);\r
+        return filter;\r
     },\r
-    \r
-    getEnterItem: Ext.emptyFn,\r
-    onTab: Ext.emptyFn,\r
-    onEsc: Ext.emptyFn\r
-});\r
 \r
-Ext.override(Ext.menu.BaseItem, {\r
-    initFocus: function(){\r
-        this.fi = new Ext.a11y.Focusable(this, this.parentMenu && this.parentMenu.el || null, true);\r
-    }\r
-});\r
+    /**\r
+     * Adds filters to the collection.\r
+     * @param {Array/Ext.grid.ColumnModel} filters Either an Array of\r
+     * filter configuration objects or an Ext.grid.ColumnModel.  The columns\r
+     * of a passed Ext.grid.ColumnModel will be examined for a <code>filter</code>\r
+     * property and, if present, will be used as the filter configuration object.   \r
+     */\r
+    addFilters : function (filters) {\r
+        if (filters) {\r
+            var i, len, filter, cm = false, dI;\r
+            if (filters instanceof Ext.grid.ColumnModel) {\r
+                filters = filters.config;\r
+                cm = true;\r
+            }\r
+            for (i = 0, len = filters.length; i < len; i++) {\r
+                filter = false;\r
+                if (cm) {\r
+                    dI = filters[i].dataIndex;\r
+                    filter = filters[i].filter || filters[i].filterable;\r
+                    if (filter){\r
+                        filter = (filter === true) ? {} : filter;\r
+                        Ext.apply(filter, {dataIndex:dI});\r
+                        // filter type is specified in order of preference:\r
+                        //     filter type specified in config\r
+                        //     type specified in store's field's type config\r
+                        filter.type = filter.type || this.store.fields.get(dI).type;  \r
+                    }\r
+                } else {\r
+                    filter = filters[i];\r
+                }\r
+                // if filter config found add filter for the column \r
+                if (filter) {\r
+                    this.addFilter(filter);\r
+                }\r
+            }\r
+        }\r
+    },\r
+    \r
+    /**\r
+     * Returns a filter for the given dataIndex, if one exists.\r
+     * @param {String} dataIndex The dataIndex of the desired filter object.\r
+     * @return {Ext.ux.grid.filter.Filter}\r
+     */\r
+    getFilter : function (dataIndex) {\r
+        return this.filters.get(dataIndex);\r
+    },\r
 \r
-Ext.override(Ext.menu.Menu, {\r
-    initFocus: function(){\r
-        this.fi = new Ext.a11y.Focusable(this);\r
-        this.focusEl = this.fi;\r
+    /**\r
+     * Turns all filters off. This does not clear the configuration information\r
+     * (see {@link #removeAll}).\r
+     */\r
+    clearFilters : function () {\r
+        this.filters.each(function (filter) {\r
+            filter.setActive(false);\r
+        });\r
+    },\r
+\r
+    /**\r
+     * Returns an Array of the currently active filters.\r
+     * @return {Array} filters Array of the currently active filters.\r
+     */\r
+    getFilterData : function () {\r
+        var filters = [], i, len;\r
+\r
+        this.filters.each(function (f) {\r
+            if (f.active) {\r
+                var d = [].concat(f.serialize());\r
+                for (i = 0, len = d.length; i < len; i++) {\r
+                    filters.push({\r
+                        field: f.dataIndex,\r
+                        data: d[i]\r
+                    });\r
+                }\r
+            }\r
+        });\r
+        return filters;\r
+    },\r
+    \r
+    /**\r
+     * Function to take the active filters data and build it into a query.\r
+     * The format of the query depends on the <code>{@link #encode}</code>\r
+     * configuration:\r
+     * <div class="mdetail-params"><ul>\r
+     * \r
+     * <li><b><tt>false</tt></b> : <i>Default</i>\r
+     * <div class="sub-desc">\r
+     * Flatten into query string of the form (assuming <code>{@link #paramPrefix}='filters'</code>:\r
+     * <pre><code>\r
+filters[0][field]="someDataIndex"&\r
+filters[0][data][comparison]="someValue1"&\r
+filters[0][data][type]="someValue2"&\r
+filters[0][data][value]="someValue3"&\r
+     * </code></pre>\r
+     * </div></li>\r
+     * <li><b><tt>true</tt></b> : \r
+     * <div class="sub-desc">\r
+     * JSON encode the filter data\r
+     * <pre><code>\r
+filters[0][field]="someDataIndex"&\r
+filters[0][data][comparison]="someValue1"&\r
+filters[0][data][type]="someValue2"&\r
+filters[0][data][value]="someValue3"&\r
+     * </code></pre>\r
+     * </div></li>\r
+     * </ul></div>\r
+     * Override this method to customize the format of the filter query for remote requests.\r
+     * @param {Array} filters A collection of objects representing active filters and their configuration.\r
+     *           Each element will take the form of {field: dataIndex, data: filterConf}. dataIndex is not assured\r
+     *    to be unique as any one filter may be a composite of more basic filters for the same dataIndex.\r
+     * @return {Object} Query keys and values\r
+     */\r
+    buildQuery : function (filters) {\r
+        var p = {}, i, f, root, dataPrefix, key, tmp,\r
+            len = filters.length;\r
+\r
+        if (!this.encode){\r
+            for (i = 0; i < len; i++) {\r
+                f = filters[i];\r
+                root = [this.paramPrefix, '[', i, ']'].join('');\r
+                p[root + '[field]'] = f.field;\r
+                \r
+                dataPrefix = root + '[data]';\r
+                for (key in f.data) {\r
+                    p[[dataPrefix, '[', key, ']'].join('')] = f.data[key];\r
+                }\r
+            }\r
+        } else {\r
+            tmp = [];\r
+            for (i = 0; i < len; i++) {\r
+                f = filters[i];\r
+                tmp.push(Ext.apply(\r
+                    {},\r
+                    {field: f.field},\r
+                    f.data\r
+                ));\r
+            }\r
+            // only build if there is active filter \r
+            if (tmp.length > 0){\r
+                p[this.paramPrefix] = Ext.util.JSON.encode(tmp);\r
+            }\r
+        }\r
+        return p;\r
+    },\r
+    \r
+    /**\r
+     * Removes filter related query parameters from the provided object.\r
+     * @param {Object} p Query parameters that may contain filter related fields.\r
+     */\r
+    cleanParams : function (p) {\r
+        // if encoding just delete the property\r
+        if (this.encode) {\r
+            delete p[this.paramPrefix];\r
+        // otherwise scrub the object of filter data\r
+        } else {\r
+            var regex, key;\r
+            regex = new RegExp('^' + this.paramPrefix + '\[[0-9]+\]');\r
+            for (key in p) {\r
+                if (regex.test(key)) {\r
+                    delete p[key];\r
+                }\r
+            }\r
+        }\r
+    },\r
+    \r
+    /**\r
+     * Function for locating filter classes, overwrite this with your favorite\r
+     * loader to provide dynamic filter loading.\r
+     * @param {String} type The type of filter to load ('Filter' is automatically\r
+     * appended to the passed type; eg, 'string' becomes 'StringFilter').\r
+     * @return {Class} The Ext.ux.grid.filter.Class \r
+     */\r
+    getFilterClass : function (type) {\r
+        // map the supported Ext.data.Field type values into a supported filter\r
+        switch(type) {\r
+            case 'auto':\r
+              type = 'string';\r
+              break;\r
+            case 'int':\r
+            case 'float':\r
+              type = 'numeric';\r
+              break;\r
+        }\r
+        return Ext.ux.grid.filter[type.substr(0, 1).toUpperCase() + type.substr(1) + 'Filter'];\r
     }\r
 });\r
 \r
-Ext.a11y.WindowMgr = new Ext.WindowGroup();\r
+// register ptype\r
+Ext.preg('gridfilters', Ext.ux.grid.GridFilters);\r
+Ext.namespace('Ext.ux.grid.filter');\r
+\r
+/** \r
+ * @class Ext.ux.grid.filter.Filter\r
+ * @extends Ext.util.Observable\r
+ * Abstract base class for filter implementations.\r
+ */\r
+Ext.ux.grid.filter.Filter = Ext.extend(Ext.util.Observable, {\r
+    /**\r
+     * @cfg {Boolean} active\r
+     * Indicates the initial status of the filter (defaults to false).\r
+     */\r
+    active : false,\r
+    /**\r
+     * True if this filter is active.  Use setActive() to alter after configuration.\r
+     * @type Boolean\r
+     * @property active\r
+     */\r
+    /**\r
+     * @cfg {String} dataIndex \r
+     * The {@link Ext.data.Store} dataIndex of the field this filter represents.\r
+     * The dataIndex does not actually have to exist in the store.\r
+     */\r
+    dataIndex : null,\r
+    /**\r
+     * The filter configuration menu that will be installed into the filter submenu of a column menu.\r
+     * @type Ext.menu.Menu\r
+     * @property\r
+     */\r
+    menu : null,\r
+    /**\r
+     * @cfg {Number} updateBuffer\r
+     * Number of milliseconds to wait after user interaction to fire an update. Only supported \r
+     * by filters: 'list', 'numeric', and 'string'. Defaults to 500.\r
+     */\r
+    updateBuffer : 500,\r
+\r
+    constructor : function (config) {\r
+        Ext.apply(this, config);\r
+            \r
+        this.addEvents(\r
+            /**\r
+             * @event activate\r
+             * Fires when an inactive filter becomes active\r
+             * @param {Ext.ux.grid.filter.Filter} this\r
+             */\r
+            'activate',\r
+            /**\r
+             * @event deactivate\r
+             * Fires when an active filter becomes inactive\r
+             * @param {Ext.ux.grid.filter.Filter} this\r
+             */\r
+            'deactivate',\r
+            /**\r
+             * @event serialize\r
+             * Fires after the serialization process. Use this to attach additional parameters to serialization\r
+             * data before it is encoded and sent to the server.\r
+             * @param {Array/Object} data A map or collection of maps representing the current filter configuration.\r
+             * @param {Ext.ux.grid.filter.Filter} filter The filter being serialized.\r
+             */\r
+            'serialize',\r
+            /**\r
+             * @event update\r
+             * Fires when a filter configuration has changed\r
+             * @param {Ext.ux.grid.filter.Filter} this The filter object.\r
+             */\r
+            'update'\r
+        );\r
+        Ext.ux.grid.filter.Filter.superclass.constructor.call(this);\r
 \r
-Ext.apply(Ext.WindowMgr, {\r
-    bringToFront: function(win){\r
-        Ext.a11y.WindowMgr.bringToFront.call(this, win);\r
-        if (win.modal) {\r
-            win.enter();\r
+        this.menu = new Ext.menu.Menu();\r
+        this.init(config);\r
+        if(config && config.value){\r
+            this.setValue(config.value);\r
+            this.setActive(config.active !== false, true);\r
+            delete config.value;\r
         }\r
-        else {\r
-            win.focus();\r
+    },\r
+\r
+    /**\r
+     * Destroys this filter by purging any event listeners, and removing any menus.\r
+     */\r
+    destroy : function(){\r
+        if (this.menu){\r
+            this.menu.destroy();\r
         }\r
-    }\r
-});\r
+        this.purgeListeners();\r
+    },\r
 \r
-Ext.override(Ext.Window, {\r
-    initFocus: function(){\r
-        Ext.Window.superclass.initFocus.call(this);\r
-        this.on('beforehide', function(){\r
-            Ext.a11y.RelayFrame.unframe();\r
-            Ext.a11y.FocusFrame.unframe();\r
-        });\r
-    }\r
-});\r
+    /**\r
+     * Template method to be implemented by all subclasses that is to\r
+     * initialize the filter and install required menu items.\r
+     * Defaults to Ext.emptyFn.\r
+     */\r
+    init : Ext.emptyFn,\r
+    \r
+    /**\r
+     * Template method to be implemented by all subclasses that is to\r
+     * get and return the value of the filter.\r
+     * Defaults to Ext.emptyFn.\r
+     * @return {Object} The 'serialized' form of this filter\r
+     * @methodOf Ext.ux.grid.filter.Filter\r
+     */\r
+    getValue : Ext.emptyFn,\r
+    \r
+    /**\r
+     * Template method to be implemented by all subclasses that is to\r
+     * set the value of the filter and fire the 'update' event.\r
+     * Defaults to Ext.emptyFn.\r
+     * @param {Object} data The value to set the filter\r
+     * @methodOf Ext.ux.grid.filter.Filter\r
+     */        \r
+    setValue : Ext.emptyFn,\r
+    \r
+    /**\r
+     * Template method to be implemented by all subclasses that is to\r
+     * return <tt>true</tt> if the filter has enough configuration information to be activated.\r
+     * Defaults to <tt>return true</tt>.\r
+     * @return {Boolean}\r
+     */\r
+    isActivatable : function(){\r
+        return true;\r
+    },\r
+    \r
+    /**\r
+     * Template method to be implemented by all subclasses that is to\r
+     * get and return serialized filter data for transmission to the server.\r
+     * Defaults to Ext.emptyFn.\r
+     */\r
+    getSerialArgs : Ext.emptyFn,\r
+\r
+    /**\r
+     * Template method to be implemented by all subclasses that is to\r
+     * validates the provided Ext.data.Record against the filters configuration.\r
+     * Defaults to <tt>return true</tt>.\r
+     * @param {Ext.data.Record} record The record to validate\r
+     * @return {Boolean} true if the record is valid within the bounds\r
+     * of the filter, false otherwise.\r
+     */\r
+    validateRecord : function(){\r
+        return true;\r
+    },\r
+\r
+    /**\r
+     * Returns the serialized filter data for transmission to the server\r
+     * and fires the 'serialize' event.\r
+     * @return {Object/Array} An object or collection of objects containing\r
+     * key value pairs representing the current configuration of the filter.\r
+     * @methodOf Ext.ux.grid.filter.Filter\r
+     */\r
+    serialize : function(){\r
+        var args = this.getSerialArgs();\r
+        this.fireEvent('serialize', args, this);\r
+        return args;\r
+    },\r
 \r
-Ext.override(Ext.form.Field, {\r
-    isFocusable: true,\r
-    noFocus: false,\r
+    /** @private */\r
+    fireUpdate : function(){\r
+        if (this.active) {\r
+            this.fireEvent('update', this);\r
+        }\r
+        this.setActive(this.isActivatable());\r
+    },\r
     \r
-    initFocus: function(){\r
-        this.fi = this.fi || new Ext.a11y.Focusable(this, null, true);\r
-        \r
-        Ext.form.Field.superclass.initFocus.call(this);\r
-        \r
-        if (this.hidden) {\r
-            this.isFocusable = false;\r
+    /**\r
+     * Sets the status of the filter and fires the appropriate events.\r
+     * @param {Boolean} active        The new filter state.\r
+     * @param {Boolean} suppressEvent True to prevent events from being fired.\r
+     * @methodOf Ext.ux.grid.filter.Filter\r
+     */\r
+    setActive : function(active, suppressEvent){\r
+        if(this.active != active){\r
+            this.active = active;\r
+            if (suppressEvent !== true) {\r
+                this.fireEvent(active ? 'activate' : 'deactivate', this);\r
+            }\r
         }\r
-        \r
-        this.on('show', function(){\r
-            this.isFocusable = true;\r
-        }, this);\r
-        this.on('hide', function(){\r
-            this.isFocusable = false;\r
-        }, this);\r
-    }\r
+    }    \r
+});/** \r
+ * @class Ext.ux.grid.filter.BooleanFilter\r
+ * @extends Ext.ux.grid.filter.Filter\r
+ * Boolean filters use unique radio group IDs (so you can have more than one!)\r
+ * <p><b><u>Example Usage:</u></b></p>\r
+ * <pre><code>    \r
+var filters = new Ext.ux.grid.GridFilters({\r
+    ...\r
+    filters: [{\r
+        // required configs\r
+        type: 'boolean',\r
+        dataIndex: 'visible'\r
+\r
+        // optional configs\r
+        defaultValue: null, // leave unselected (false selected by default)\r
+        yesText: 'Yes',     // default\r
+        noText: 'No'        // default\r
+    }]\r
 });\r
+ * </code></pre>\r
+ */\r
+Ext.ux.grid.filter.BooleanFilter = Ext.extend(Ext.ux.grid.filter.Filter, {\r
+       /**\r
+        * @cfg {Boolean} defaultValue\r
+        * Set this to null if you do not want either option to be checked by default. Defaults to false.\r
+        */\r
+       defaultValue : false,\r
+       /**\r
+        * @cfg {String} yesText\r
+        * Defaults to 'Yes'.\r
+        */\r
+       yesText : 'Yes',\r
+       /**\r
+        * @cfg {String} noText\r
+        * Defaults to 'No'.\r
+        */\r
+       noText : 'No',\r
 \r
-Ext.override(Ext.FormPanel, {\r
-    initFocus: function(){\r
-        Ext.FormPanel.superclass.initFocus.call(this);\r
-        this.on('focus', this.onFieldFocus, this, {\r
-            stopEvent: true\r
-        });\r
+    /**  \r
+     * @private\r
+     * Template method that is to initialize the filter and install required menu items.\r
+     */\r
+    init : function (config) {\r
+        var gId = Ext.id();\r
+               this.options = [\r
+                       new Ext.menu.CheckItem({text: this.yesText, group: gId, checked: this.defaultValue === true}),\r
+                       new Ext.menu.CheckItem({text: this.noText, group: gId, checked: this.defaultValue === false})];\r
+               \r
+               this.menu.add(this.options[0], this.options[1]);\r
+               \r
+               for(var i=0; i<this.options.length; i++){\r
+                       this.options[i].on('click', this.fireUpdate, this);\r
+                       this.options[i].on('checkchange', this.fireUpdate, this);\r
+               }\r
+       },\r
+       \r
+    /**\r
+     * @private\r
+     * Template method that is to get and return the value of the filter.\r
+     * @return {String} The value of this filter\r
+     */\r
+    getValue : function () {\r
+               return this.options[0].checked;\r
+       },\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to set the value of the filter.\r
+     * @param {Object} value The value to set the filter\r
+     */        \r
+       setValue : function (value) {\r
+               this.options[value ? 0 : 1].setChecked(true);\r
+       },\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to get and return serialized filter data for\r
+     * transmission to the server.\r
+     * @return {Object/Array} An object or collection of objects containing\r
+     * key value pairs representing the current configuration of the filter.\r
+     */\r
+    getSerialArgs : function () {\r
+               var args = {type: 'boolean', value: this.getValue()};\r
+               return args;\r
+       },\r
+       \r
+    /**\r
+     * Template method that is to validate the provided Ext.data.Record\r
+     * against the filters configuration.\r
+     * @param {Ext.data.Record} record The record to validate\r
+     * @return {Boolean} true if the record is valid within the bounds\r
+     * of the filter, false otherwise.\r
+     */\r
+    validateRecord : function (record) {\r
+               return record.get(this.dataIndex) == this.getValue();\r
+       }\r
+});/** \r
+ * @class Ext.ux.grid.filter.DateFilter\r
+ * @extends Ext.ux.grid.filter.Filter\r
+ * Filter by a configurable Ext.menu.DateMenu\r
+ * <p><b><u>Example Usage:</u></b></p>\r
+ * <pre><code>    \r
+var filters = new Ext.ux.grid.GridFilters({\r
+    ...\r
+    filters: [{\r
+        // required configs\r
+        type: 'date',\r
+        dataIndex: 'dateAdded',\r
+        \r
+        // optional configs\r
+        dateFormat: 'm/d/Y',  // default\r
+        beforeText: 'Before', // default\r
+        afterText: 'After',   // default\r
+        onText: 'On',         // default\r
+        pickerOpts: {\r
+            // any DateMenu configs\r
+        },\r
+\r
+        active: true // default is false\r
+    }]\r
+});\r
+ * </code></pre>\r
+ */\r
+Ext.ux.grid.filter.DateFilter = Ext.extend(Ext.ux.grid.filter.Filter, {\r
+    /**\r
+     * @cfg {String} afterText\r
+     * Defaults to 'After'.\r
+     */\r
+    afterText : 'After',\r
+    /**\r
+     * @cfg {String} beforeText\r
+     * Defaults to 'Before'.\r
+     */\r
+    beforeText : 'Before',\r
+    /**\r
+     * @cfg {Object} compareMap\r
+     * Map for assigning the comparison values used in serialization.\r
+     */\r
+    compareMap : {\r
+        before: 'lt',\r
+        after:  'gt',\r
+        on:     'eq'\r
     },\r
-    \r
-    // private\r
-    createForm: function(){\r
-        delete this.initialConfig.listeners;\r
-        var form = new Ext.form.BasicForm(null, this.initialConfig);\r
-        form.afterMethod('add', this.formItemAdd, this);\r
-        return form;\r
+    /**\r
+     * @cfg {String} dateFormat\r
+     * The date format to return when using getValue.\r
+     * Defaults to 'm/d/Y'.\r
+     */\r
+    dateFormat : 'm/d/Y',\r
+\r
+    /**\r
+     * @cfg {Date} maxDate\r
+     * Allowable date as passed to the Ext.DatePicker\r
+     * Defaults to undefined.\r
+     */\r
+    /**\r
+     * @cfg {Date} minDate\r
+     * Allowable date as passed to the Ext.DatePicker\r
+     * Defaults to undefined.\r
+     */\r
+    /**\r
+     * @cfg {Array} menuItems\r
+     * The items to be shown in this menu\r
+     * Defaults to:<pre>\r
+     * menuItems : ['before', 'after', '-', 'on'],\r
+     * </pre>\r
+     */\r
+    menuItems : ['before', 'after', '-', 'on'],\r
+\r
+    /**\r
+     * @cfg {Object} menuItemCfgs\r
+     * Default configuration options for each menu item\r
+     */\r
+    menuItemCfgs : {\r
+        selectOnFocus: true,\r
+        width: 125\r
     },\r
+\r
+    /**\r
+     * @cfg {String} onText\r
+     * Defaults to 'On'.\r
+     */\r
+    onText : 'On',\r
     \r
-    formItemAdd: function(item){\r
-        item.on('render', function(field){\r
-            field.fi.setRelayTo(this.el);\r
-            this.relayEvents(field.fi, ['focus']);\r
-        }, this, {\r
-            single: true\r
+    /**\r
+     * @cfg {Object} pickerOpts\r
+     * Configuration options for the date picker associated with each field.\r
+     */\r
+    pickerOpts : {},\r
+\r
+    /**  \r
+     * @private\r
+     * Template method that is to initialize the filter and install required menu items.\r
+     */\r
+    init : function (config) {\r
+        var menuCfg, i, len, item, cfg, Cls;\r
+\r
+        menuCfg = Ext.apply(this.pickerOpts, {\r
+            minDate: this.minDate, \r
+            maxDate: this.maxDate, \r
+            format:  this.dateFormat,\r
+            listeners: {\r
+                scope: this,\r
+                select: this.onMenuSelect\r
+            }\r
         });\r
+\r
+        this.fields = {};\r
+        for (i = 0, len = this.menuItems.length; i < len; i++) {\r
+            item = this.menuItems[i];\r
+            if (item !== '-') {\r
+                cfg = {\r
+                    itemId: 'range-' + item,\r
+                    text: this[item + 'Text'],\r
+                    menu: new Ext.menu.DateMenu(\r
+                        Ext.apply(menuCfg, {\r
+                            itemId: item\r
+                        })\r
+                    ),\r
+                    listeners: {\r
+                        scope: this,\r
+                        checkchange: this.onCheckChange\r
+                    }\r
+                };\r
+                Cls = Ext.menu.CheckItem;\r
+                item = this.fields[item] = new Cls(cfg);\r
+            }\r
+            //this.add(item);\r
+            this.menu.add(item);\r
+        }\r
     },\r
-    \r
-    onFocus: function(){\r
-        var items = this.getFocusItems();\r
-        if (items && items.getCount() > 0) {\r
-            if (this.lastFocus && items.indexOf(this.lastFocus) !== -1) {\r
-                this.lastFocus.focus();\r
+\r
+    onCheckChange : function () {\r
+        this.setActive(this.isActivatable());\r
+        this.fireEvent('update', this);\r
+    },\r
+\r
+    /**  \r
+     * @private\r
+     * Handler method called when there is a keyup event on an input\r
+     * item of this menu.\r
+     */\r
+    onInputKeyUp : function (field, e) {\r
+        var k = e.getKey();\r
+        if (k == e.RETURN && field.isValid()) {\r
+            e.stopEvent();\r
+            this.menu.hide(true);\r
+            return;\r
+        }\r
+    },\r
+\r
+    /**\r
+     * Handler for when the menu for a field fires the 'select' event\r
+     * @param {Object} date\r
+     * @param {Object} menuItem\r
+     * @param {Object} value\r
+     * @param {Object} picker\r
+     */\r
+    onMenuSelect : function (menuItem, value, picker) {\r
+        var fields = this.fields,\r
+            field = this.fields[menuItem.itemId];\r
+        \r
+        field.setChecked(true);\r
+        \r
+        if (field == fields.on) {\r
+            fields.before.setChecked(false, true);\r
+            fields.after.setChecked(false, true);\r
+        } else {\r
+            fields.on.setChecked(false, true);\r
+            if (field == fields.after && fields.before.menu.picker.value < value) {\r
+                fields.before.setChecked(false, true);\r
+            } else if (field == fields.before && fields.after.menu.picker.value > value) {\r
+                fields.after.setChecked(false, true);\r
             }\r
-            else {\r
-                items.first().focus();\r
+        }\r
+        this.fireEvent('update', this);\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to get and return the value of the filter.\r
+     * @return {String} The value of this filter\r
+     */\r
+    getValue : function () {\r
+        var key, result = {};\r
+        for (key in this.fields) {\r
+            if (this.fields[key].checked) {\r
+                result[key] = this.fields[key].menu.picker.getValue();\r
             }\r
         }\r
+        return result;\r
     },\r
-    \r
-    onFieldFocus: function(e, t, tf){\r
-        this.lastFocus = tf.component || null;\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to set the value of the filter.\r
+     * @param {Object} value The value to set the filter\r
+     * @param {Boolean} preserve true to preserve the checked status\r
+     * of the other fields.  Defaults to false, unchecking the\r
+     * other fields\r
+     */        \r
+    setValue : function (value, preserve) {\r
+        var key;\r
+        for (key in this.fields) {\r
+            if(value[key]){\r
+                this.fields[key].menu.picker.setValue(value[key]);\r
+                this.fields[key].setChecked(true);\r
+            } else if (!preserve) {\r
+                this.fields[key].setChecked(false);\r
+            }\r
+        }\r
+        this.fireEvent('update', this);\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to return <tt>true</tt> if the filter\r
+     * has enough configuration information to be activated.\r
+     * @return {Boolean}\r
+     */\r
+    isActivatable : function () {\r
+        var key;\r
+        for (key in this.fields) {\r
+            if (this.fields[key].checked) {\r
+                return true;\r
+            }\r
+        }\r
+        return false;\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to get and return serialized filter data for\r
+     * transmission to the server.\r
+     * @return {Object/Array} An object or collection of objects containing\r
+     * key value pairs representing the current configuration of the filter.\r
+     */\r
+    getSerialArgs : function () {\r
+        var args = [];\r
+        for (var key in this.fields) {\r
+            if(this.fields[key].checked){\r
+                args.push({\r
+                    type: 'date',\r
+                    comparison: this.compareMap[key],\r
+                    value: this.getFieldValue(key).format(this.dateFormat)\r
+                });\r
+            }\r
+        }\r
+        return args;\r
+    },\r
+\r
+    /**\r
+     * Get and return the date menu picker value\r
+     * @param {String} item The field identifier ('before', 'after', 'on')\r
+     * @return {Date} Gets the current selected value of the date field\r
+     */\r
+    getFieldValue : function(item){\r
+        return this.fields[item].menu.picker.getValue();\r
     },\r
     \r
-    onTab: function(e, t, tf){\r
-        if (tf.relayTo.component === this) {\r
-            var item = e.shiftKey ? this.getPreviousFocus(tf.component) : this.getNextFocus(tf.component);\r
+    /**\r
+     * Gets the menu picker associated with the passed field\r
+     * @param {String} item The field identifier ('before', 'after', 'on')\r
+     * @return {Object} The menu picker\r
+     */\r
+    getPicker : function(item){\r
+        return this.fields[item].menu.picker;\r
+    },\r
+\r
+    /**\r
+     * Template method that is to validate the provided Ext.data.Record\r
+     * against the filters configuration.\r
+     * @param {Ext.data.Record} record The record to validate\r
+     * @return {Boolean} true if the record is valid within the bounds\r
+     * of the filter, false otherwise.\r
+     */\r
+    validateRecord : function (record) {\r
+        var key,\r
+            pickerValue,\r
+            val = record.get(this.dataIndex);\r
             \r
-            if (item) {\r
-                ev.stopEvent();\r
-                item.focus();\r
-                return;\r
+        if(!Ext.isDate(val)){\r
+            return false;\r
+        }\r
+        val = val.clearTime(true).getTime();\r
+        \r
+        for (key in this.fields) {\r
+            if (this.fields[key].checked) {\r
+                pickerValue = this.getFieldValue(key).clearTime(true).getTime();\r
+                if (key == 'before' && pickerValue <= val) {\r
+                    return false;\r
+                }\r
+                if (key == 'after' && pickerValue >= val) {\r
+                    return false;\r
+                }\r
+                if (key == 'on' && pickerValue != val) {\r
+                    return false;\r
+                }\r
             }\r
         }\r
-        Ext.FormPanel.superclass.onTab.apply(this, arguments);\r
+        return true;\r
+    }\r
+});/** \r
+ * @class Ext.ux.grid.filter.ListFilter\r
+ * @extends Ext.ux.grid.filter.Filter\r
+ * <p>List filters are able to be preloaded/backed by an Ext.data.Store to load\r
+ * their options the first time they are shown. ListFilter utilizes the\r
+ * {@link Ext.ux.menu.ListMenu} component.</p>\r
+ * <p>Although not shown here, this class accepts all configuration options\r
+ * for {@link Ext.ux.menu.ListMenu}.</p>\r
+ * \r
+ * <p><b><u>Example Usage:</u></b></p>\r
+ * <pre><code>    \r
+var filters = new Ext.ux.grid.GridFilters({\r
+    ...\r
+    filters: [{\r
+        type: 'list',\r
+        dataIndex: 'size',\r
+        phpMode: true,\r
+        // options will be used as data to implicitly creates an ArrayStore\r
+        options: ['extra small', 'small', 'medium', 'large', 'extra large']\r
+    }]\r
+});\r
+ * </code></pre>\r
+ * \r
+ */\r
+Ext.ux.grid.filter.ListFilter = Ext.extend(Ext.ux.grid.filter.Filter, {\r
+\r
+    /**\r
+     * @cfg {Array} options\r
+     * <p><code>data</code> to be used to implicitly create a data store\r
+     * to back this list when the data source is <b>local</b>. If the\r
+     * data for the list is remote, use the <code>{@link #store}</code>\r
+     * config instead.</p>\r
+     * <br><p>Each item within the provided array may be in one of the\r
+     * following formats:</p>\r
+     * <div class="mdetail-params"><ul>\r
+     * <li><b>Array</b> :\r
+     * <pre><code>\r
+options: [\r
+    [11, 'extra small'], \r
+    [18, 'small'],\r
+    [22, 'medium'],\r
+    [35, 'large'],\r
+    [44, 'extra large']\r
+]\r
+     * </code></pre>\r
+     * </li>\r
+     * <li><b>Object</b> :\r
+     * <pre><code>\r
+labelField: 'name', // override default of 'text'\r
+options: [\r
+    {id: 11, name:'extra small'}, \r
+    {id: 18, name:'small'}, \r
+    {id: 22, name:'medium'}, \r
+    {id: 35, name:'large'}, \r
+    {id: 44, name:'extra large'} \r
+]\r
+     * </code></pre>\r
+     * </li>\r
+     * <li><b>String</b> :\r
+     * <pre><code>\r
+     * options: ['extra small', 'small', 'medium', 'large', 'extra large']\r
+     * </code></pre>\r
+     * </li>\r
+     */\r
+    /**\r
+     * @cfg {Boolean} phpMode\r
+     * <p>Adjust the format of this filter. Defaults to false.</p>\r
+     * <br><p>When GridFilters <code>@cfg encode = false</code> (default):</p>\r
+     * <pre><code>\r
+// phpMode == false (default):\r
+filter[0][data][type] list\r
+filter[0][data][value] value1\r
+filter[0][data][value] value2\r
+filter[0][field] prod \r
+\r
+// phpMode == true:\r
+filter[0][data][type] list\r
+filter[0][data][value] value1, value2\r
+filter[0][field] prod \r
+     * </code></pre>\r
+     * When GridFilters <code>@cfg encode = true</code>:\r
+     * <pre><code>\r
+// phpMode == false (default):\r
+filter : [{"type":"list","value":["small","medium"],"field":"size"}]\r
+\r
+// phpMode == true:\r
+filter : [{"type":"list","value":"small,medium","field":"size"}]\r
+     * </code></pre>\r
+     */\r
+    phpMode : false,\r
+    /**\r
+     * @cfg {Ext.data.Store} store\r
+     * The {@link Ext.data.Store} this list should use as its data source\r
+     * when the data source is <b>remote</b>. If the data for the list\r
+     * is local, use the <code>{@link #options}</code> config instead.\r
+     */\r
+\r
+    /**  \r
+     * @private\r
+     * Template method that is to initialize the filter and install required menu items.\r
+     * @param {Object} config\r
+     */\r
+    init : function (config) {\r
+        this.dt = new Ext.util.DelayedTask(this.fireUpdate, this);\r
+\r
+        // if a menu already existed, do clean up first\r
+        if (this.menu){\r
+            this.menu.destroy();\r
+        }\r
+        this.menu = new Ext.ux.menu.ListMenu(config);\r
+        this.menu.on('checkchange', this.onCheckChange, this);\r
     },\r
     \r
-    getNextFocus: function(current){\r
-        var items = this.getFocusItems(), i = items.indexOf(current), length = items.getCount();\r
-        \r
-        return (i < length - 1) ? items.get(i + 1) : false;\r
+    /**\r
+     * @private\r
+     * Template method that is to get and return the value of the filter.\r
+     * @return {String} The value of this filter\r
+     */\r
+    getValue : function () {\r
+        return this.menu.getSelected();\r
+    },\r
+    /**\r
+     * @private\r
+     * Template method that is to set the value of the filter.\r
+     * @param {Object} value The value to set the filter\r
+     */        \r
+    setValue : function (value) {\r
+        this.menu.setSelected(value);\r
+        this.fireEvent('update', this);\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to return <tt>true</tt> if the filter\r
+     * has enough configuration information to be activated.\r
+     * @return {Boolean}\r
+     */\r
+    isActivatable : function () {\r
+        return this.getValue().length > 0;\r
     },\r
     \r
-    getPreviousFocus: function(current){\r
-        var items = this.getFocusItems(), i = items.indexOf(current), length = items.getCount();\r
-        \r
-        return (i > 0) ? items.get(i - 1) : false;\r
+    /**\r
+     * @private\r
+     * Template method that is to get and return serialized filter data for\r
+     * transmission to the server.\r
+     * @return {Object/Array} An object or collection of objects containing\r
+     * key value pairs representing the current configuration of the filter.\r
+     */\r
+    getSerialArgs : function () {\r
+        var args = {type: 'list', value: this.phpMode ? this.getValue().join(',') : this.getValue()};\r
+        return args;\r
+    },\r
+\r
+    /** @private */\r
+    onCheckChange : function(){\r
+        this.dt.delay(this.updateBuffer);\r
+    },\r
+    \r
+    \r
+    /**\r
+     * Template method that is to validate the provided Ext.data.Record\r
+     * against the filters configuration.\r
+     * @param {Ext.data.Record} record The record to validate\r
+     * @return {Boolean} true if the record is valid within the bounds\r
+     * of the filter, false otherwise.\r
+     */\r
+    validateRecord : function (record) {\r
+        return this.getValue().indexOf(record.get(this.dataIndex)) > -1;\r
     }\r
+});/** \r
+ * @class Ext.ux.grid.filter.NumericFilter\r
+ * @extends Ext.ux.grid.filter.Filter\r
+ * Filters using an Ext.ux.menu.RangeMenu.\r
+ * <p><b><u>Example Usage:</u></b></p>\r
+ * <pre><code>    \r
+var filters = new Ext.ux.grid.GridFilters({\r
+    ...\r
+    filters: [{\r
+        type: 'numeric',\r
+        dataIndex: 'price'\r
+    }]\r
 });\r
+ * </code></pre> \r
+ */\r
+Ext.ux.grid.filter.NumericFilter = Ext.extend(Ext.ux.grid.filter.Filter, {\r
 \r
-Ext.override(Ext.Viewport, {\r
-    initFocus: function(){\r
-        Ext.Viewport.superclass.initFocus.apply(this);\r
-        this.mon(Ext.get(document), 'focus', this.focus, this);\r
-        this.mon(Ext.get(document), 'blur', this.blur, this);\r
-        this.fi.setNoFrame(true);\r
+    /**\r
+     * @cfg {Object} fieldCls\r
+     * The Class to use to construct each field item within this menu\r
+     * Defaults to:<pre>\r
+     * fieldCls : Ext.form.NumberField\r
+     * </pre>\r
+     */\r
+    fieldCls : Ext.form.NumberField,\r
+    /**\r
+     * @cfg {Object} fieldCfg\r
+     * The default configuration options for any field item unless superseded\r
+     * by the <code>{@link #fields}</code> configuration.\r
+     * Defaults to:<pre>\r
+     * fieldCfg : {}\r
+     * </pre>\r
+     * Example usage:\r
+     * <pre><code>\r
+fieldCfg : {\r
+    width: 150,\r
+},\r
+     * </code></pre>\r
+     */\r
+    /**\r
+     * @cfg {Object} fields\r
+     * The field items may be configured individually\r
+     * Defaults to <tt>undefined</tt>.\r
+     * Example usage:\r
+     * <pre><code>\r
+fields : {\r
+    gt: { // override fieldCfg options\r
+        width: 200,\r
+        fieldCls: Ext.ux.form.CustomNumberField // to override default {@link #fieldCls}\r
+    }\r
+},\r
+     * </code></pre>\r
+     */\r
+    /**\r
+     * @cfg {Object} iconCls\r
+     * The iconCls to be applied to each comparator field item.\r
+     * Defaults to:<pre>\r
+iconCls : {\r
+    gt : 'ux-rangemenu-gt',\r
+    lt : 'ux-rangemenu-lt',\r
+    eq : 'ux-rangemenu-eq'\r
+}\r
+     * </pre>\r
+     */\r
+    iconCls : {\r
+        gt : 'ux-rangemenu-gt',\r
+        lt : 'ux-rangemenu-lt',\r
+        eq : 'ux-rangemenu-eq'\r
+    },\r
+\r
+    /**\r
+     * @cfg {Object} menuItemCfgs\r
+     * Default configuration options for each menu item\r
+     * Defaults to:<pre>\r
+menuItemCfgs : {\r
+    emptyText: 'Enter Filter Text...',\r
+    selectOnFocus: true,\r
+    width: 125\r
+}\r
+     * </pre>\r
+     */\r
+    menuItemCfgs : {\r
+        emptyText: 'Enter Filter Text...',\r
+        selectOnFocus: true,\r
+        width: 125\r
+    },\r
+\r
+    /**\r
+     * @cfg {Array} menuItems\r
+     * The items to be shown in this menu.  Items are added to the menu\r
+     * according to their position within this array. Defaults to:<pre>\r
+     * menuItems : ['lt','gt','-','eq']\r
+     * </pre>\r
+     */\r
+    menuItems : ['lt', 'gt', '-', 'eq'],\r
+\r
+    /**  \r
+     * @private\r
+     * Template method that is to initialize the filter and install required menu items.\r
+     */\r
+    init : function (config) {\r
+        // if a menu already existed, do clean up first\r
+        if (this.menu){\r
+            this.menu.destroy();\r
+        }        \r
+        this.menu = new Ext.ux.menu.RangeMenu(Ext.apply(config, {\r
+            // pass along filter configs to the menu\r
+            fieldCfg : this.fieldCfg || {},\r
+            fieldCls : this.fieldCls,\r
+            fields : this.fields || {},\r
+            iconCls: this.iconCls,\r
+            menuItemCfgs: this.menuItemCfgs,\r
+            menuItems: this.menuItems,\r
+            updateBuffer: this.updateBuffer\r
+        }));\r
+        // relay the event fired by the menu\r
+        this.menu.on('update', this.fireUpdate, this);\r
     },\r
     \r
-    onTab: function(e, t, tf, f){\r
-        e.stopEvent();\r
-        \r
-        if (tf === f) {\r
-            items = this.getFocusItems();\r
-            if (items && items.getCount() > 0) {\r
-                items.first().focus();\r
+    /**\r
+     * @private\r
+     * Template method that is to get and return the value of the filter.\r
+     * @return {String} The value of this filter\r
+     */\r
+    getValue : function () {\r
+        return this.menu.getValue();\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to set the value of the filter.\r
+     * @param {Object} value The value to set the filter\r
+     */        \r
+    setValue : function (value) {\r
+        this.menu.setValue(value);\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to return <tt>true</tt> if the filter\r
+     * has enough configuration information to be activated.\r
+     * @return {Boolean}\r
+     */\r
+    isActivatable : function () {\r
+        var values = this.getValue();\r
+        for (key in values) {\r
+            if (values[key] !== undefined) {\r
+                return true;\r
             }\r
         }\r
-        else {\r
-            var rf = tf.relayTo || tf;\r
-            var item = e.shiftKey ? this.getPreviousFocus(rf.component) : this.getNextFocus(rf.component);\r
-            item.focus();\r
-        }\r
-    }\r
-});\r
+        return false;\r
+    },\r
     \r
-})();/**\r
- * @class Ext.ux.GMapPanel\r
- * @extends Ext.Panel\r
- * @author Shea Frederick\r
- */\r
-Ext.ux.GMapPanel = Ext.extend(Ext.Panel, {\r
-    initComponent : function(){\r
-        \r
-        var defConfig = {\r
-            plain: true,\r
-            zoomLevel: 3,\r
-            yaw: 180,\r
-            pitch: 0,\r
-            zoom: 0,\r
-            gmapType: 'map',\r
-            border: false\r
-        };\r
-        \r
-        Ext.applyIf(this,defConfig);\r
-        \r
-        Ext.ux.GMapPanel.superclass.initComponent.call(this);        \r
-\r
+    /**\r
+     * @private\r
+     * Template method that is to get and return serialized filter data for\r
+     * transmission to the server.\r
+     * @return {Object/Array} An object or collection of objects containing\r
+     * key value pairs representing the current configuration of the filter.\r
+     */\r
+    getSerialArgs : function () {\r
+        var key,\r
+            args = [],\r
+            values = this.menu.getValue();\r
+        for (key in values) {\r
+            args.push({\r
+                type: 'numeric',\r
+                comparison: key,\r
+                value: values[key]\r
+            });\r
+        }\r
+        return args;\r
     },\r
-    afterRender : function(){\r
-        \r
-        var wh = this.ownerCt.getSize();\r
-        Ext.applyIf(this, wh);\r
-        \r
-        Ext.ux.GMapPanel.superclass.afterRender.call(this);    \r
-        \r
-        if (this.gmapType === 'map'){\r
-            this.gmap = new GMap2(this.body.dom);\r
+\r
+    /**\r
+     * Template method that is to validate the provided Ext.data.Record\r
+     * against the filters configuration.\r
+     * @param {Ext.data.Record} record The record to validate\r
+     * @return {Boolean} true if the record is valid within the bounds\r
+     * of the filter, false otherwise.\r
+     */\r
+    validateRecord : function (record) {\r
+        var val = record.get(this.dataIndex),\r
+            values = this.getValue();\r
+        if (values.eq !== undefined && val != values.eq) {\r
+            return false;\r
         }\r
-        \r
-        if (this.gmapType === 'panorama'){\r
-            this.gmap = new GStreetviewPanorama(this.body.dom);\r
+        if (values.lt !== undefined && val >= values.lt) {\r
+            return false;\r
         }\r
-        \r
-        if (typeof this.addControl == 'object' && this.gmapType === 'map') {\r
-            this.gmap.addControl(this.addControl);\r
+        if (values.gt !== undefined && val <= values.gt) {\r
+            return false;\r
         }\r
+        return true;\r
+    }\r
+});/** \r
+ * @class Ext.ux.grid.filter.StringFilter\r
+ * @extends Ext.ux.grid.filter.Filter\r
+ * Filter by a configurable Ext.form.TextField\r
+ * <p><b><u>Example Usage:</u></b></p>\r
+ * <pre><code>    \r
+var filters = new Ext.ux.grid.GridFilters({\r
+    ...\r
+    filters: [{\r
+        // required configs\r
+        type: 'string',\r
+        dataIndex: 'name',\r
         \r
-        if (typeof this.setCenter === 'object') {\r
-            if (typeof this.setCenter.geoCodeAddr === 'string'){\r
-                this.geoCodeLookup(this.setCenter.geoCodeAddr);\r
-            }else{\r
-                if (this.gmapType === 'map'){\r
-                    var point = new GLatLng(this.setCenter.lat,this.setCenter.lng);\r
-                    this.gmap.setCenter(point, this.zoomLevel);    \r
-                }\r
-                if (typeof this.setCenter.marker === 'object' && typeof point === 'object'){\r
-                    this.addMarker(point,this.setCenter.marker,this.setCenter.marker.clear);\r
-                }\r
-            }\r
-            if (this.gmapType === 'panorama'){\r
-                this.gmap.setLocationAndPOV(new GLatLng(this.setCenter.lat,this.setCenter.lng), {yaw: this.yaw, pitch: this.pitch, zoom: this.zoom});\r
-            }\r
-        }\r
+        // optional configs\r
+        value: 'foo',\r
+        active: true, // default is false\r
+        iconCls: 'ux-gridfilter-text-icon' // default\r
+        // any Ext.form.TextField configs accepted\r
+    }]\r
+});\r
+ * </code></pre>\r
+ */\r
+Ext.ux.grid.filter.StringFilter = Ext.extend(Ext.ux.grid.filter.Filter, {\r
 \r
-        GEvent.bind(this.gmap, 'load', this, function(){\r
-            this.onMapReady();\r
+    /**\r
+     * @cfg {String} iconCls\r
+     * The iconCls to be applied to the menu item.\r
+     * Defaults to <tt>'ux-gridfilter-text-icon'</tt>.\r
+     */\r
+    iconCls : 'ux-gridfilter-text-icon',\r
+\r
+    emptyText: 'Enter Filter Text...',\r
+    selectOnFocus: true,\r
+    width: 125,\r
+    \r
+    /**  \r
+     * @private\r
+     * Template method that is to initialize the filter and install required menu items.\r
+     */\r
+    init : function (config) {\r
+        Ext.applyIf(config, {\r
+            enableKeyEvents: true,\r
+            iconCls: this.iconCls,\r
+            listeners: {\r
+                scope: this,\r
+                keyup: this.onInputKeyUp\r
+            }\r
         });\r
 \r
+        this.inputItem = new Ext.form.TextField(config); \r
+        this.menu.add(this.inputItem);\r
+        this.updateTask = new Ext.util.DelayedTask(this.fireUpdate, this);\r
+    },\r
+    \r
+    /**\r
+     * @private\r
+     * Template method that is to get and return the value of the filter.\r
+     * @return {String} The value of this filter\r
+     */\r
+    getValue : function () {\r
+        return this.inputItem.getValue();\r
+    },\r
+    \r
+    /**\r
+     * @private\r
+     * Template method that is to set the value of the filter.\r
+     * @param {Object} value The value to set the filter\r
+     */        \r
+    setValue : function (value) {\r
+        this.inputItem.setValue(value);\r
+        this.fireEvent('update', this);\r
+    },\r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to return <tt>true</tt> if the filter\r
+     * has enough configuration information to be activated.\r
+     * @return {Boolean}\r
+     */\r
+    isActivatable : function () {\r
+        return this.inputItem.getValue().length > 0;\r
     },\r
-    onMapReady : function(){\r
-        this.addMarkers(this.markers);\r
-        this.addMapControls();\r
-        this.addOptions();  \r
+\r
+    /**\r
+     * @private\r
+     * Template method that is to get and return serialized filter data for\r
+     * transmission to the server.\r
+     * @return {Object/Array} An object or collection of objects containing\r
+     * key value pairs representing the current configuration of the filter.\r
+     */\r
+    getSerialArgs : function () {\r
+        return {type: 'string', value: this.getValue()};\r
     },\r
-    onResize : function(w, h){\r
 \r
-        if (typeof this.getMap() == 'object') {\r
-            this.gmap.checkResize();\r
+    /**\r
+     * Template method that is to validate the provided Ext.data.Record\r
+     * against the filters configuration.\r
+     * @param {Ext.data.Record} record The record to validate\r
+     * @return {Boolean} true if the record is valid within the bounds\r
+     * of the filter, false otherwise.\r
+     */\r
+    validateRecord : function (record) {\r
+        var val = record.get(this.dataIndex);\r
+\r
+        if(typeof val != 'string') {\r
+            return (this.getValue().length === 0);\r
         }\r
-        \r
-        Ext.ux.GMapPanel.superclass.onResize.call(this, w, h);\r
 \r
+        return val.toLowerCase().indexOf(this.getValue().toLowerCase()) > -1;\r
     },\r
-    setSize : function(width, height, animate){\r
-        \r
-        if (typeof this.getMap() == 'object') {\r
-            this.gmap.checkResize();\r
+    \r
+    /**  \r
+     * @private\r
+     * Handler method called when there is a keyup event on this.inputItem\r
+     */\r
+    onInputKeyUp : function (field, e) {\r
+        var k = e.getKey();\r
+        if (k == e.RETURN && field.isValid()) {\r
+            e.stopEvent();\r
+            this.menu.hide(true);\r
+            return;\r
+        }\r
+        // restart the timer\r
+        this.updateTask.delay(this.updateBuffer);\r
+    }\r
+});\r
+Ext.namespace('Ext.ux.menu');\r
+\r
+/** \r
+ * @class Ext.ux.menu.ListMenu\r
+ * @extends Ext.menu.Menu\r
+ * This is a supporting class for {@link Ext.ux.grid.filter.ListFilter}.\r
+ * Although not listed as configuration options for this class, this class\r
+ * also accepts all configuration options from {@link Ext.ux.grid.filter.ListFilter}.\r
+ */\r
+Ext.ux.menu.ListMenu = Ext.extend(Ext.menu.Menu, {\r
+    /**\r
+     * @cfg {String} labelField\r
+     * Defaults to 'text'.\r
+     */\r
+    labelField :  'text',\r
+    /**\r
+     * @cfg {String} paramPrefix\r
+     * Defaults to 'Loading...'.\r
+     */\r
+    loadingText : 'Loading...',\r
+    /**\r
+     * @cfg {Boolean} loadOnShow\r
+     * Defaults to true.\r
+     */\r
+    loadOnShow : true,\r
+    /**\r
+     * @cfg {Boolean} single\r
+     * Specify true to group all items in this list into a single-select\r
+     * radio button group. Defaults to false.\r
+     */\r
+    single : false,\r
+\r
+    constructor : function (cfg) {\r
+        this.selected = [];\r
+        this.addEvents(\r
+            /**\r
+             * @event checkchange\r
+             * Fires when there is a change in checked items from this list\r
+             * @param {Object} item Ext.menu.CheckItem\r
+             * @param {Object} checked The checked value that was set\r
+             */\r
+            'checkchange'\r
+        );\r
+      \r
+        Ext.ux.menu.ListMenu.superclass.constructor.call(this, cfg = cfg || {});\r
+    \r
+        if(!cfg.store && cfg.options){\r
+            var options = [];\r
+            for(var i=0, len=cfg.options.length; i<len; i++){\r
+                var value = cfg.options[i];\r
+                switch(Ext.type(value)){\r
+                    case 'array':  options.push(value); break;\r
+                    case 'object': options.push([value.id, value[this.labelField]]); break;\r
+                    case 'string': options.push([value, value]); break;\r
+                }\r
+            }\r
+            \r
+            this.store = new Ext.data.Store({\r
+                reader: new Ext.data.ArrayReader({id: 0}, ['id', this.labelField]),\r
+                data:   options,\r
+                listeners: {\r
+                    'load': this.onLoad,\r
+                    scope:  this\r
+                }\r
+            });\r
+            this.loaded = true;\r
+        } else {\r
+            this.add({text: this.loadingText, iconCls: 'loading-indicator'});\r
+            this.store.on('load', this.onLoad, this);\r
         }\r
-        \r
-        Ext.ux.GMapPanel.superclass.setSize.call(this, width, height, animate);\r
-        \r
     },\r
-    getMap : function(){\r
-        \r
-        return this.gmap;\r
-        \r
+\r
+    destroy : function () {\r
+        if (this.store) {\r
+            this.store.destroy();    \r
+        }\r
+        Ext.ux.menu.ListMenu.superclass.destroy.call(this);\r
     },\r
-    getCenter : function(){\r
+\r
+    /**\r
+     * Lists will initially show a 'loading' item while the data is retrieved from the store.\r
+     * In some cases the loaded data will result in a list that goes off the screen to the\r
+     * right (as placement calculations were done with the loading item). This adapter will\r
+     * allow show to be called with no arguments to show with the previous arguments and\r
+     * thus recalculate the width and potentially hang the menu from the left.\r
+     */\r
+    show : function () {\r
+        var lastArgs = null;\r
+        return function(){\r
+            if(arguments.length === 0){\r
+                Ext.ux.menu.ListMenu.superclass.show.apply(this, lastArgs);\r
+            } else {\r
+                lastArgs = arguments;\r
+                if (this.loadOnShow && !this.loaded) {\r
+                    this.store.load();\r
+                }\r
+                Ext.ux.menu.ListMenu.superclass.show.apply(this, arguments);\r
+            }\r
+        };\r
+    }(),\r
+    \r
+    /** @private */\r
+    onLoad : function (store, records) {\r
+        var visible = this.isVisible();\r
+        this.hide(false);\r
         \r
-        return this.getMap().getCenter();\r
+        this.removeAll(true);\r
         \r
-    },\r
-    getCenterLatLng : function(){\r
+        var gid = this.single ? Ext.id() : null;\r
+        for(var i=0, len=records.length; i<len; i++){\r
+            var item = new Ext.menu.CheckItem({\r
+                text:    records[i].get(this.labelField), \r
+                group:   gid,\r
+                checked: this.selected.indexOf(records[i].id) > -1,\r
+                hideOnClick: false});\r
+            \r
+            item.itemId = records[i].id;\r
+            item.on('checkchange', this.checkChange, this);\r
+                        \r
+            this.add(item);\r
+        }\r
         \r
-        var ll = this.getCenter();\r
-        return {lat: ll.lat(), lng: ll.lng()};\r
+        this.loaded = true;\r
         \r
+        if (visible) {\r
+            this.show();\r
+        }      \r
+        this.fireEvent('load', this, records);\r
     },\r
-    addMarkers : function(markers) {\r
-        \r
-        if (Ext.isArray(markers)){\r
-            for (var i = 0; i < markers.length; i++) {\r
-                var mkr_point = new GLatLng(markers[i].lat,markers[i].lng);\r
-                this.addMarker(mkr_point,markers[i].marker,false,markers[i].setCenter, markers[i].listeners);\r
-            }\r
+\r
+    /**\r
+     * Get the selected items.\r
+     * @return {Array} selected\r
+     */\r
+    getSelected : function () {\r
+        return this.selected;\r
+    },\r
+    \r
+    /** @private */\r
+    setSelected : function (value) {\r
+        value = this.selected = [].concat(value);\r
+\r
+        if (this.loaded) {\r
+            this.items.each(function(item){\r
+                item.setChecked(false, true);\r
+                for (var i = 0, len = value.length; i < len; i++) {\r
+                    if (item.itemId == value[i]) {\r
+                        item.setChecked(true, true);\r
+                    }\r
+                }\r
+            }, this);\r
         }\r
-        \r
     },\r
-    addMarker : function(point, marker, clear, center, listeners){\r
+    \r
+    /**\r
+     * Handler for the 'checkchange' event from an check item in this menu\r
+     * @param {Object} item Ext.menu.CheckItem\r
+     * @param {Object} checked The checked value that was set\r
+     */\r
+    checkChange : function (item, checked) {\r
+        var value = [];\r
+        this.items.each(function(item){\r
+            if (item.checked) {\r
+                value.push(item.itemId);\r
+            }\r
+        },this);\r
+        this.selected = value;\r
         \r
-        Ext.applyIf(marker,G_DEFAULT_ICON);\r
+        this.fireEvent('checkchange', item, checked);\r
+    }    \r
+});Ext.ns('Ext.ux.menu');\r
+\r
+/** \r
+ * @class Ext.ux.menu.RangeMenu\r
+ * @extends Ext.menu.Menu\r
+ * Custom implementation of Ext.menu.Menu that has preconfigured\r
+ * items for gt, lt, eq.\r
+ * <p><b><u>Example Usage:</u></b></p>\r
+ * <pre><code>    \r
+\r
+ * </code></pre> \r
+ */\r
+Ext.ux.menu.RangeMenu = Ext.extend(Ext.menu.Menu, {\r
 \r
-        if (clear === true){\r
-            this.getMap().clearOverlays();\r
-        }\r
-        if (center === true) {\r
-            this.getMap().setCenter(point, this.zoomLevel);\r
-        }\r
+    constructor : function (config) {\r
 \r
-        var mark = new GMarker(point,marker);\r
-        if (typeof listeners === 'object'){\r
-            for (evt in listeners) {\r
-                GEvent.bind(mark, evt, this, listeners[evt]);\r
+        Ext.ux.menu.RangeMenu.superclass.constructor.call(this, config);\r
+\r
+        this.addEvents(\r
+            /**\r
+             * @event update\r
+             * Fires when a filter configuration has changed\r
+             * @param {Ext.ux.grid.filter.Filter} this The filter object.\r
+             */\r
+            'update'\r
+        );\r
+      \r
+        this.updateTask = new Ext.util.DelayedTask(this.fireUpdate, this);\r
+    \r
+        var i, len, item, cfg, Cls;\r
+\r
+        for (i = 0, len = this.menuItems.length; i < len; i++) {\r
+            item = this.menuItems[i];\r
+            if (item !== '-') {\r
+                // defaults\r
+                cfg = {\r
+                    itemId: 'range-' + item,\r
+                    enableKeyEvents: true,\r
+                    iconCls: this.iconCls[item] || 'no-icon',\r
+                    listeners: {\r
+                        scope: this,\r
+                        keyup: this.onInputKeyUp\r
+                    }\r
+                };\r
+                Ext.apply(\r
+                    cfg,\r
+                    // custom configs\r
+                    Ext.applyIf(this.fields[item] || {}, this.fieldCfg[item]),\r
+                    // configurable defaults\r
+                    this.menuItemCfgs\r
+                );\r
+                Cls = cfg.fieldCls || this.fieldCls;\r
+                item = this.fields[item] = new Cls(cfg);\r
             }\r
+            this.add(item);\r
         }\r
-        this.getMap().addOverlay(mark);\r
+    },\r
 \r
+    /**\r
+     * @private\r
+     * called by this.updateTask\r
+     */\r
+    fireUpdate : function () {\r
+        this.fireEvent('update', this);\r
     },\r
-    addMapControls : function(){\r
-        \r
-        if (this.gmapType === 'map') {\r
-            if (Ext.isArray(this.mapControls)) {\r
-                for(i=0;i<this.mapControls.length;i++){\r
-                    this.addMapControl(this.mapControls[i]);\r
-                }\r
-            }else if(typeof this.mapControls === 'string'){\r
-                this.addMapControl(this.mapControls);\r
-            }else if(typeof this.mapControls === 'object'){\r
-                this.getMap().addControl(this.mapControls);\r
+    \r
+    /**\r
+     * Get and return the value of the filter.\r
+     * @return {String} The value of this filter\r
+     */\r
+    getValue : function () {\r
+        var result = {}, key, field;\r
+        for (key in this.fields) {\r
+            field = this.fields[key];\r
+            if (field.isValid() && String(field.getValue()).length > 0) {\r
+                result[key] = field.getValue();\r
             }\r
         }\r
-        \r
+        return result;\r
     },\r
-    addMapControl : function(mc){\r
-        \r
-        var mcf = window[mc];\r
-        if (typeof mcf === 'function') {\r
-            this.getMap().addControl(new mcf());\r
-        }    \r
-        \r
+  \r
+    /**\r
+     * Set the value of this menu and fires the 'update' event.\r
+     * @param {Object} data The data to assign to this menu\r
+     */        \r
+    setValue : function (data) {\r
+        var key;\r
+        for (key in this.fields) {\r
+            this.fields[key].setValue(data[key] !== undefined ? data[key] : '');\r
+        }\r
+        this.fireEvent('update', this);\r
     },\r
-    addOptions : function(){\r
+\r
+    /**  \r
+     * @private\r
+     * Handler method called when there is a keyup event on an input\r
+     * item of this menu.\r
+     */\r
+    onInputKeyUp : function (field, e) {\r
+        var k = e.getKey();\r
+        if (k == e.RETURN && field.isValid()) {\r
+            e.stopEvent();\r
+            this.hide(true);\r
+            return;\r
+        }\r
         \r
-        if (Ext.isArray(this.mapConfOpts)) {\r
-            var mc;\r
-            for(i=0;i<this.mapConfOpts.length;i++){\r
-                this.addOption(this.mapConfOpts[i]);\r
+        if (field == this.fields.eq) {\r
+            if (this.fields.gt) {\r
+                this.fields.gt.setValue(null);\r
             }\r
-        }else if(typeof this.mapConfOpts === 'string'){\r
-            this.addOption(this.mapConfOpts);\r
-        }        \r
-        \r
-    },\r
-    addOption : function(mc){\r
-        \r
-        var mcf = this.getMap()[mc];\r
-        if (typeof mcf === 'function') {\r
-            this.getMap()[mc]();\r
-        }    \r
-        \r
-    },\r
-    geoCodeLookup : function(addr) {\r
-        \r
-        this.geocoder = new GClientGeocoder();\r
-        this.geocoder.getLocations(addr, this.addAddressToMap.createDelegate(this));\r
-        \r
-    },\r
-    addAddressToMap : function(response) {\r
-        \r
-        if (!response || response.Status.code != 200) {\r
-            Ext.MessageBox.alert('Error', 'Code '+response.Status.code+' Error Returned');\r
-        }else{\r
-            place = response.Placemark[0];\r
-            addressinfo = place.AddressDetails;\r
-            accuracy = addressinfo.Accuracy;\r
-            if (accuracy === 0) {\r
-                Ext.MessageBox.alert('Unable to Locate Address', 'Unable to Locate the Address you provided');\r
-            }else{\r
-                if (accuracy < 7) {\r
-                    Ext.MessageBox.alert('Address Accuracy', 'The address provided has a low accuracy.<br><br>Level '+accuracy+' Accuracy (8 = Exact Match, 1 = Vague Match)');\r
-                }else{\r
-                    point = new GLatLng(place.Point.coordinates[1], place.Point.coordinates[0]);\r
-                    if (typeof this.setCenter.marker === 'object' && typeof point === 'object'){\r
-                        this.addMarker(point,this.setCenter.marker,this.setCenter.marker.clear,true, this.setCenter.listeners);\r
-                    }\r
-                }\r
+            if (this.fields.lt) {\r
+                this.fields.lt.setValue(null);\r
             }\r
         }\r
+        else {\r
+            this.fields.eq.setValue(null);\r
+        }\r
         \r
+        // restart the timer\r
+        this.updateTask.delay(this.updateBuffer);\r
     }\r
\r
 });\r
-\r
-Ext.reg('gmappanel', Ext.ux.GMapPanel); Ext.ns('Ext.ux.grid');\r
+Ext.ns('Ext.ux.grid');\r
 \r
 /**\r
  * @class Ext.ux.grid.GroupSummary\r
@@ -1772,10 +3104,7 @@ summaryRenderer: function(v, params, data){
     },\r
     init : function(grid){\r
         this.grid = grid;\r
-        this.cm = grid.getColumnModel();\r
-        this.view = grid.getView();\r
-\r
-        var v = this.view;\r
+        var v = this.view = grid.getView();\r
         v.doGroupEnd = this.doGroupEnd.createDelegate(this);\r
 \r
         v.afterMethod('onColumnWidthUpdated', this.doWidth, this);\r
@@ -1822,9 +3151,8 @@ summaryRenderer: function(v, params, data){
 \r
     renderSummary : function(o, cs){\r
         cs = cs || this.view.getColumnData();\r
-        var cfg = this.cm.config;\r
-\r
-        var buf = [], c, p = {}, cf, last = cs.length-1;\r
+        var cfg = this.grid.getColumnModel().config,\r
+            buf = [], c, p = {}, cf, last = cs.length-1;\r
         for(var i = 0, len = cs.length; i < len; i++){\r
             c = cs[i];\r
             cf = cfg[i];\r
@@ -1852,7 +3180,7 @@ summaryRenderer: function(v, params, data){
      * @param {Object} cs\r
      */\r
     calculate : function(rs, cs){\r
-        var data = {}, r, c, cfg = this.cm.config, cf;\r
+        var data = {}, r, c, cfg = this.grid.getColumnModel().config, cf;\r
         for(var j = 0, jlen = rs.length; j < jlen; j++){\r
             r = rs[j];\r
             for(var i = 0, len = cs.length; i < len; i++){\r
@@ -1920,21 +3248,21 @@ summaryRenderer: function(v, params, data){
     },\r
 \r
     refreshSummaryById : function(gid){\r
-        var g = document.getElementById(gid);\r
+        var g = Ext.getDom(gid);\r
         if(!g){\r
             return false;\r
         }\r
         var rs = [];\r
-        this.grid.store.each(function(r){\r
+        this.grid.getStore().each(function(r){\r
             if(r._groupId == gid){\r
                 rs[rs.length] = r;\r
             }\r
         });\r
-        var cs = this.view.getColumnData();\r
-        var data = this.calculate(rs, cs);\r
-        var markup = this.renderSummary({data: data}, cs);\r
-\r
-        var existing = this.getSummaryNode(gid);\r
+        var cs = this.view.getColumnData(),\r
+            data = this.calculate(rs, cs),\r
+            markup = this.renderSummary({data: data}, cs),\r
+            existing = this.getSummaryNode(gid);\r
+            \r
         if(existing){\r
             g.removeChild(existing);\r
         }\r
@@ -1964,8 +3292,8 @@ grid.on('afteredit', function(){
      * @param {String} msg Text to use as innerHTML for the summary row.\r
      */\r
     showSummaryMsg : function(groupValue, msg){\r
-        var gid = this.view.getGroupId(groupValue);\r
-        var node = this.getSummaryNode(gid);\r
+        var gid = this.view.getGroupId(groupValue),\r
+             node = this.getSummaryNode(gid);\r
         if(node){\r
             node.innerHTML = '<div class="x-grid3-summary-msg">' + msg + '</div>';\r
         }\r
@@ -2057,9 +3385,9 @@ Ext.ux.grid.HybridSummary = Ext.extend(Ext.ux.grid.GroupSummary, {
      * @param {Object} cs\r
      */\r
     calculate : function(rs, cs){\r
-        var gcol = this.view.getGroupField();\r
-        var gvalue = rs[0].data[gcol];\r
-        var gdata = this.getSummaryData(gvalue);\r
+        var gcol = this.view.getGroupField(),\r
+            gvalue = rs[0].data[gcol],\r
+            gdata = this.getSummaryData(gvalue);\r
         return gdata || Ext.ux.grid.HybridSummary.superclass.calculate.call(this, rs, cs);\r
     },\r
 \r
@@ -2081,7 +3409,7 @@ grid.on('afteredit', function(){
      * @param {Boolean} skipRefresh (Optional) Defaults to false\r
      */\r
     updateSummaryData : function(groupValue, data, skipRefresh){\r
-        var json = this.grid.store.reader.jsonData;\r
+        var json = this.grid.getStore().reader.jsonData;\r
         if(!json.summaryData){\r
             json.summaryData = {};\r
         }\r
@@ -2097,7 +3425,7 @@ grid.on('afteredit', function(){
      * @return {Object} summaryData\r
      */\r
     getSummaryData : function(groupValue){\r
-        var json = this.grid.store.reader.jsonData;\r
+        var json = this.grid.getStore().reader.jsonData;\r
         if(json && json.summaryData){\r
             return json.summaryData[groupValue];\r
         }\r
@@ -2406,7 +3734,7 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
         \r
         this.on('beforeadd', function(gtp, item, index){\r
             this.initGroup(item, index);\r
-        });                 \r
+        });          \r
     },\r
     \r
     initEvents : function() {\r
@@ -2415,7 +3743,6 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
         \r
     onRender: function(ct, position){\r
         Ext.TabPanel.superclass.onRender.call(this, ct, position);\r
-\r
         if(this.plain){\r
             var pos = this.tabPosition == 'top' ? 'header' : 'footer';\r
             this[pos].addClass('x-tab-panel-'+pos+'-plain');\r
@@ -2429,11 +3756,11 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
         var beforeEl = (this.tabPosition=='bottom' ? this.stripWrap : null);\r
         this.strip = new Ext.Element(this.stripWrap.dom.firstChild);\r
 \r
-               this.header.addClass('x-grouptabs-panel-header');\r
-               this.bwrap.addClass('x-grouptabs-bwrap');\r
+        this.header.addClass('x-grouptabs-panel-header');\r
+        this.bwrap.addClass('x-grouptabs-bwrap');\r
         this.body.addClass('x-tab-panel-body-'+this.tabPosition + ' x-grouptabs-panel-body');\r
 \r
-        if (!this.itemTpl) {\r
+        if (!this.groupTpl) {\r
             var tt = new Ext.Template(\r
                 '<li class="{cls}" id="{id}">', \r
                 '<a class="x-grouptabs-expand" onclick="return false;"></a>', \r
@@ -2443,9 +3770,8 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
             );\r
             tt.disableFormats = true;\r
             tt.compile();\r
-            Ext.ux.GroupTabPanel.prototype.itemTpl = tt;\r
+            Ext.ux.GroupTabPanel.prototype.groupTpl = tt;\r
         }\r
-\r
         this.items.each(this.initGroup, this);\r
     },\r
     \r
@@ -2471,8 +3797,8 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
         \r
     // private\r
     findTargets: function(e){\r
-        var item = null;\r
-        var itemEl = e.getTarget('li', this.strip);\r
+        var item = null,\r
+            itemEl = e.getTarget('li', this.strip);\r
         if (itemEl) {\r
             item = this.findById(itemEl.id.split(this.idDelimiter)[1]);\r
             if (item.disabled) {\r
@@ -2523,7 +3849,7 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
             groupEl = this.getGroupEl(groupEl);\r
         }        \r
         Ext.fly(groupEl).toggleClass('x-grouptabs-expanded');\r
-               this.syncTabJoint();\r
+        this.syncTabJoint();\r
     },    \r
     \r
     syncTabJoint: function(groupEl){\r
@@ -2534,7 +3860,7 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
         groupEl = groupEl || this.getGroupEl(this.activeGroup);\r
         if(groupEl) {\r
             this.tabJoint.setHeight(Ext.fly(groupEl).getHeight() - 2); \r
-                       \r
+            \r
             var y = Ext.isGecko2 ? 0 : 1;\r
             if (this.tabPosition == 'left'){\r
                 this.tabJoint.alignTo(groupEl, 'tl-tr', [-2,y]);\r
@@ -2565,18 +3891,17 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
     },\r
     \r
     initGroup: function(group, index){\r
-        var before = this.strip.dom.childNodes[index];        \r
-        var p = this.getTemplateArgs(group);\r
+        var before = this.strip.dom.childNodes[index],   \r
+            p = this.getTemplateArgs(group);\r
         if (index === 0) {\r
             p.cls += ' x-tab-first';\r
         }\r
         p.cls += ' x-grouptabs-main';\r
         p.text = group.getMainItem().title;\r
         \r
-        var el = before ? this.itemTpl.insertBefore(before, p) : this.itemTpl.append(this.strip, p);\r
-        \r
-        var tl = this.createCorner(el, 'top-' + this.tabPosition);\r
-        var bl = this.createCorner(el, 'bottom-' + this.tabPosition);\r
+        var el = before ? this.groupTpl.insertBefore(before, p) : this.groupTpl.append(this.strip, p),\r
+            tl = this.createCorner(el, 'top-' + this.tabPosition),\r
+            bl = this.createCorner(el, 'bottom-' + this.tabPosition);\r
 \r
         if (group.expanded) {\r
             this.expandGroup(el);\r
@@ -2589,8 +3914,11 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
             tl.setTop('-5px');\r
         }\r
 \r
-        this.mon(group, 'changemainitem', this.onGroupChangeMainItem, this);\r
-        this.mon(group, 'beforetabchange', this.onGroupBeforeTabChange, this);\r
+        this.mon(group, {\r
+            scope: this,\r
+            changemainitem: this.onGroupChangeMainItem,\r
+            beforetabchange: this.onGroupBeforeTabChange\r
+        });\r
     },\r
     \r
     setActiveGroup : function(group) {\r
@@ -2608,7 +3936,7 @@ Ext.ux.GroupTabPanel = Ext.extend(Ext.TabPanel, {
                 if(oldEl){\r
                     Ext.fly(oldEl).removeClass('x-grouptabs-strip-active');\r
                 }\r
-                this.activeGroup.fireEvent('deactivate', this.activeTab);\r
+                this.activeGroup.fireEvent('deactivate', this.activeGroup);\r
             }\r
 \r
             var groupEl = this.getGroupEl(group);\r
@@ -3128,9 +4456,9 @@ Ext.ux.form.MultiSelect = Ext.extend(Ext.form.Field,  {
             height: this.height,\r
             width: this.width,\r
             style: "padding:0;",\r
-            tbar: this.tbar,\r
-            bodyStyle: 'overflow: auto;'\r
+            tbar: this.tbar\r
         });\r
+        fs.body.addClass('ux-mselect');\r
 \r
         this.view = new Ext.ListView({\r
             multiSelect: true,\r
@@ -3961,41 +5289,30 @@ Ext.ux.ProgressBarPager  = Ext.extend(Object, {
        },
        //public
        init : function (parent) {
-               
-               if(parent.displayInfo){
-                       this.parent = parent;
-                       var ind  = parent.items.indexOf(parent.displayItem);
-                       parent.remove(parent.displayItem, true);
-                       this.progressBar = new Ext.ProgressBar({
-                               text    : this.defaultText,
-                               width   : this.progBarWidth,
-                               animate :  this.defaultAnimCfg
-                       });                                     
-                  
-                       parent.displayItem = this.progressBar;
-                       
-                       parent.add(parent.displayItem); 
-                       parent.doLayout();
-                       Ext.apply(parent, this.parentOverrides);                
-                       
-                       this.progressBar.on('render', function(pb) {
-                               pb.el.applyStyles('cursor:pointer');
-
-                               pb.el.on('click', this.handleProgressBarClick, this);
-                       }, this);
-                       
-               
-                       // Remove the click handler from the 
-                       this.progressBar.on({
-                               scope         : this,
-                               beforeDestroy : function() {
-                                       this.progressBar.el.un('click', this.handleProgressBarClick, this);     
-                               }
-                       });     
-                                               
-               }
-                 
-       },
+        
+        if(parent.displayInfo){
+            this.parent = parent;
+            var ind  = parent.items.indexOf(parent.displayItem);
+            parent.remove(parent.displayItem, true);
+            this.progressBar = new Ext.ProgressBar({
+                text    : this.defaultText,
+                width   : this.progBarWidth,
+                animate :  this.defaultAnimCfg
+            });                 
+           
+            parent.displayItem = this.progressBar;
+            
+            parent.add(parent.displayItem); 
+            parent.doLayout();
+            Ext.apply(parent, this.parentOverrides);        
+            
+            this.progressBar.on('render', function(pb) {
+                pb.mon(pb.getEl().applyStyles('cursor:pointer'), 'click', this.handleProgressBarClick, this);
+            }, this, {single: true});
+                        
+        }
+          
+    },
        // private
        // This method handles the click for the progress bar
        handleProgressBarClick : function(e){
@@ -4064,6 +5381,11 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
     monitorValid: true,
     focusDelay: 250,
     errorSummary: true,
+    
+    saveText: 'Save',
+    cancelText: 'Cancel',
+    commitChangesText: 'You need to commit or cancel your changes',
+    errorText: 'Errors',
 
     defaults: {
         normalWidth: true
@@ -4080,6 +5402,13 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
              * @param {Number} rowIndex The rowIndex of the row just edited
              */
             'beforeedit',
+            /**
+             * @event canceledit
+             * Fired when the editor is cancelled.
+             * @param {Ext.ux.grid.RowEditor} roweditor This object
+             * @param {Boolean} forced True if the cancel button is pressed, false is the editor was invalid. 
+             */
+            'canceledit',
             /**
              * @event validateedit
              * Fired after a row is edited and passes validation.
@@ -4126,7 +5455,8 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
             columnresize: this.verifyLayout,
             columnmove: this.refreshFields,
             reconfigure: this.refreshFields,
-           destroy : this.destroy,
+            beforedestroy : this.beforedestroy,
+            destroy : this.destroy,
             bodyscroll: {
                 buffer: 250,
                 fn: this.positionButtons
@@ -4136,6 +5466,12 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
         grid.getView().on('refresh', this.stopEditing.createDelegate(this, []));
     },
 
+    beforedestroy: function() {
+        this.grid.getStore().un('remove', this.onStoreRemove, this);
+        this.stopEditing(false);
+        Ext.destroy(this.btns);
+    },
+
     refreshFields: function(){
         this.initFields();
         this.verifyLayout();
@@ -4154,17 +5490,18 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
 
     startEditing: function(rowIndex, doFocus){
         if(this.editing && this.isDirty()){
-            this.showTooltip('You need to commit or cancel your changes');
+            this.showTooltip(this.commitChangesText);
             return;
         }
-        this.editing = true;
-        if(typeof rowIndex == 'object'){
+        if(Ext.isObject(rowIndex)){
             rowIndex = this.grid.getStore().indexOf(rowIndex);
         }
         if(this.fireEvent('beforeedit', this, rowIndex) !== false){
-            var g = this.grid, view = g.getView();
-            var row = view.getRow(rowIndex);
-            var record = g.store.getAt(rowIndex);
+            this.editing = true;
+            var g = this.grid, view = g.getView(),
+                row = view.getRow(rowIndex),
+                record = g.store.getAt(rowIndex);
+                
             this.record = record;
             this.rowIndex = rowIndex;
             this.values = {};
@@ -4181,7 +5518,7 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
                 val = this.preEditValue(record, cm.getDataIndex(i));
                 f = fields[i];
                 f.setValue(val);
-                this.values[f.id] = val || '';
+                this.values[f.id] = Ext.isEmpty(val) ? '' : val;
             }
             this.verifyLayout(true);
             if(!this.isVisible()){
@@ -4205,16 +5542,20 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
         }
         if(saveChanges === false || !this.isValid()){
             this.hide();
+            this.fireEvent('canceledit', this, saveChanges === false);
             return;
         }
-        var changes = {}, r = this.record, hasChange = false;
-        var cm = this.grid.colModel, fields = this.items.items;
+        var changes = {}, 
+            r = this.record, 
+            hasChange = false,
+            cm = this.grid.colModel, 
+            fields = this.items.items;
         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
             if(!cm.isHidden(i)){
                 var dindex = cm.getDataIndex(i);
                 if(!Ext.isEmpty(dindex)){
-                    var oldValue = r.data[dindex];
-                    var value = this.postEditValue(fields[i].getValue(), oldValue, r, dindex);
+                    var oldValue = r.data[dindex],
+                        value = this.postEditValue(fields[i].getValue(), oldValue, r, dindex);
                     if(String(oldValue) !== String(value)){
                         changes[dindex] = value;
                         hasChange = true;
@@ -4224,11 +5565,9 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
         }
         if(hasChange && this.fireEvent('validateedit', this, changes, r, this.rowIndex) !== false){
             r.beginEdit();
-            for(var k in changes){
-                if(changes.hasOwnProperty(k)){
-                    r.set(k, changes[k]);
-                }
-            }
+            Ext.iterate(changes, function(name, value){
+                r.set(name, value);
+            });
             r.endEdit();
             this.fireEvent('afteredit', this, changes, r, this.rowIndex);
         }
@@ -4238,14 +5577,11 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
     verifyLayout: function(force){
         if(this.el && (this.isVisible() || force === true)){
             var row = this.grid.getView().getRow(this.rowIndex);
-            this.setSize(Ext.fly(row).getWidth(), Ext.isIE ? Ext.fly(row).getHeight() + (Ext.isBorderBox ? 9 : 0) : undefined);
+            this.setSize(Ext.fly(row).getWidth(), Ext.fly(row).getHeight() + 9);
             var cm = this.grid.colModel, fields = this.items.items;
             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
                 if(!cm.isHidden(i)){
                     var adjust = 0;
-                    if(i === 0){
-                        adjust += 0; // outer padding
-                    }
                     if(i === (len - 1)){
                         adjust += 3; // outer padding
                     } else{
@@ -4270,8 +5606,8 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
         var cm = this.grid.getColumnModel(), pm = Ext.layout.ContainerLayout.prototype.parseMargins;
         this.removeAll(false);
         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
-            var c = cm.getColumnAt(i);
-            var ed = c.getEditor();
+            var c = cm.getColumnAt(i),
+                ed = c.getEditor();
             if(!ed){
                 ed = c.displayEditor || new Ext.form.DisplayField();
             }
@@ -4347,12 +5683,12 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
                 ref: 'saveBtn',
                 itemId: 'saveBtn',
                 xtype: 'button',
-                text: this.saveText || 'Save',
+                text: this.saveText,
                 width: this.minButtonWidth,
                 handler: this.stopEditing.createDelegate(this, [true])
             }, {
                 xtype: 'button',
-                text: this.cancelText || 'Cancel',
+                text: this.cancelText,
                 width: this.minButtonWidth,
                 handler: this.stopEditing.createDelegate(this, [false])
             }]
@@ -4383,11 +5719,13 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
 
     positionButtons: function(){
         if(this.btns){
-            var h = this.el.dom.clientHeight;
-            var view = this.grid.getView();
-            var scroll = view.scroller.dom.scrollLeft;
-            var width =  view.mainBody.getWidth();
-            var bw = this.btns.getWidth();
+            var g = this.grid,
+                h = this.el.dom.clientHeight,
+                view = g.getView(),
+                scroll = view.scroller.dom.scrollLeft,
+                bw = this.btns.getWidth(),
+                width = Math.min(g.getWidth(), g.getColumnModel().getTotalWidth());
+                
             this.btns.el.shift({left: (width/2)-(bw/2)+scroll, top: h - 2, stopFx: true, duration:0.2});
         }
     },
@@ -4405,13 +5743,14 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
 
     doFocus: function(pt){
         if(this.isVisible()){
-            var index = 0;
+            var index = 0,
+                cm = this.grid.getColumnModel(),
+                c;
             if(pt){
                 index = this.getTargetColumnIndex(pt);
             }
-            var cm = this.grid.getColumnModel();
             for(var i = index||0, len = cm.getColumnCount(); i < len; i++){
-                var c = cm.getColumnAt(i);
+                c = cm.getColumnAt(i);
                 if(!c.hidden && c.getEditor()){
                     c.getEditor().focus();
                     break;
@@ -4421,10 +5760,12 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
     },
 
     getTargetColumnIndex: function(pt){
-        var grid = this.grid, v = grid.view;
-        var x = pt.left;
-        var cms = grid.colModel.config;
-        var i = 0, match = false;
+        var grid = this.grid, 
+            v = grid.view,
+            x = pt.left,
+            cms = grid.colModel.config,
+            i = 0, 
+            match = false;
         for(var len = cms.length, c; c = cms[i]; i++){
             if(!c.hidden){
                 if(Ext.fly(v.getHeaderCell(i)).getRegion().right >= x){
@@ -4485,21 +5826,30 @@ Ext.ux.grid.RowEditor = Ext.extend(Ext.Panel, {
                 maxWidth: 600,
                 cls: 'errorTip',
                 width: 300,
-                title: 'Errors',
+                title: this.errorText,
                 autoHide: false,
                 anchor: 'left',
                 anchorToTarget: true,
                 mouseOffset: [40,0]
             });
         }
-        t.initTarget(this.items.last().getEl());
-        if(!t.rendered){
+        var v = this.grid.getView(),
+            top = parseInt(this.el.dom.style.top, 10),
+            scroll = v.scroller.dom.scrollTop,
+            h = this.el.getHeight();
+                
+        if(top + h >= scroll){
+            t.initTarget(this.items.last().getEl());
+            if(!t.rendered){
+                t.show();
+                t.hide();
+            }
+            t.body.update(msg);
+            t.doAutoWidth();
             t.show();
+        }else if(t.rendered){
             t.hide();
         }
-        t.body.update(msg);
-        t.doAutoWidth();
-        t.show();
     },
 
     getErrorText: function(){
@@ -4687,10 +6037,19 @@ Ext.ux.grid.RowExpander = Ext.extend(Ext.util.Observable, {
     \r
     // @private    \r
     onDestroy: function() {\r
-        this.keyNav.disable();\r
-        delete this.keyNav;\r
+        if(this.keyNav){\r
+            this.keyNav.disable();\r
+            delete this.keyNav;\r
+        }\r
+        /*\r
+         * A majority of the time, the plugin will be destroyed along with the grid,\r
+         * which means the mainBody won't be available. On the off chance that the plugin\r
+         * isn't destroyed with the grid, take care of removing the listener.\r
+         */\r
         var mainBody = this.grid.getView().mainBody;\r
-        mainBody.un('mousedown', this.onMouseDown, this);\r
+        if(mainBody){\r
+            mainBody.un('mousedown', this.onMouseDown, this);\r
+        }\r
     },\r
     // @private\r
     onRowDblClick: function(grid, rowIdx, e) {\r
@@ -4961,181 +6320,182 @@ Ext.ux.form.SearchField = Ext.extend(Ext.form.TwinTriggerField, {
  * @xtype selectbox\r
  */\r
 Ext.ux.form.SelectBox = Ext.extend(Ext.form.ComboBox, {\r
-       constructor: function(config){\r
-               this.searchResetDelay = 1000;\r
-               config = config || {};\r
-               config = Ext.apply(config || {}, {\r
-                       editable: false,\r
-                       forceSelection: true,\r
-                       rowHeight: false,\r
-                       lastSearchTerm: false,\r
-                       triggerAction: 'all',\r
-                       mode: 'local'\r
-               });\r
-\r
-               Ext.ux.form.SelectBox.superclass.constructor.apply(this, arguments);\r
-\r
-               this.lastSelectedIndex = this.selectedIndex || 0;\r
-       },\r
+    constructor: function(config){\r
+        this.searchResetDelay = 1000;\r
+        config = config || {};\r
+        config = Ext.apply(config || {}, {\r
+            editable: false,\r
+            forceSelection: true,\r
+            rowHeight: false,\r
+            lastSearchTerm: false,\r
+            triggerAction: 'all',\r
+            mode: 'local'\r
+        });\r
+\r
+        Ext.ux.form.SelectBox.superclass.constructor.apply(this, arguments);\r
+\r
+        this.lastSelectedIndex = this.selectedIndex || 0;\r
+    },\r
+\r
+    initEvents : function(){\r
+        Ext.ux.form.SelectBox.superclass.initEvents.apply(this, arguments);\r
+        // you need to use keypress to capture upper/lower case and shift+key, but it doesn't work in IE\r
+        this.el.on('keydown', this.keySearch, this, true);\r
+        this.cshTask = new Ext.util.DelayedTask(this.clearSearchHistory, this);\r
+    },\r
+\r
+    keySearch : function(e, target, options) {\r
+        var raw = e.getKey();\r
+        var key = String.fromCharCode(raw);\r
+        var startIndex = 0;\r
+\r
+        if( !this.store.getCount() ) {\r
+            return;\r
+        }\r
+\r
+        switch(raw) {\r
+            case Ext.EventObject.HOME:\r
+                e.stopEvent();\r
+                this.selectFirst();\r
+                return;\r
+\r
+            case Ext.EventObject.END:\r
+                e.stopEvent();\r
+                this.selectLast();\r
+                return;\r
 \r
-       initEvents : function(){\r
-               Ext.ux.form.SelectBox.superclass.initEvents.apply(this, arguments);\r
-               // you need to use keypress to capture upper/lower case and shift+key, but it doesn't work in IE\r
-               this.el.on('keydown', this.keySearch, this, true);\r
-               this.cshTask = new Ext.util.DelayedTask(this.clearSearchHistory, this);\r
-       },\r
+            case Ext.EventObject.PAGEDOWN:\r
+                this.selectNextPage();\r
+                e.stopEvent();\r
+                return;\r
 \r
-       keySearch : function(e, target, options) {\r
-               var raw = e.getKey();\r
-               var key = String.fromCharCode(raw);\r
-               var startIndex = 0;\r
+            case Ext.EventObject.PAGEUP:\r
+                this.selectPrevPage();\r
+                e.stopEvent();\r
+                return;\r
+        }\r
 \r
-               if( !this.store.getCount() ) {\r
-                       return;\r
-               }\r
+        // skip special keys other than the shift key\r
+        if( (e.hasModifier() && !e.shiftKey) || e.isNavKeyPress() || e.isSpecialKey() ) {\r
+            return;\r
+        }\r
+        if( this.lastSearchTerm == key ) {\r
+            startIndex = this.lastSelectedIndex;\r
+        }\r
+        this.search(this.displayField, key, startIndex);\r
+        this.cshTask.delay(this.searchResetDelay);\r
+    },\r
 \r
-               switch(raw) {\r
-                       case Ext.EventObject.HOME:\r
-                               e.stopEvent();\r
-                               this.selectFirst();\r
-                               return;\r
-\r
-                       case Ext.EventObject.END:\r
-                               e.stopEvent();\r
-                               this.selectLast();\r
-                               return;\r
-\r
-                       case Ext.EventObject.PAGEDOWN:\r
-                               this.selectNextPage();\r
-                               e.stopEvent();\r
-                               return;\r
-\r
-                       case Ext.EventObject.PAGEUP:\r
-                               this.selectPrevPage();\r
-                               e.stopEvent();\r
-                               return;\r
-               }\r
+    onRender : function(ct, position) {\r
+        this.store.on('load', this.calcRowsPerPage, this);\r
+        Ext.ux.form.SelectBox.superclass.onRender.apply(this, arguments);\r
+        if( this.mode == 'local' ) {\r
+            this.initList();\r
+            this.calcRowsPerPage();\r
+        }\r
+    },\r
 \r
-               // skip special keys other than the shift key\r
-               if( (e.hasModifier() && !e.shiftKey) || e.isNavKeyPress() || e.isSpecialKey() ) {\r
-                       return;\r
-               }\r
-               if( this.lastSearchTerm == key ) {\r
-                       startIndex = this.lastSelectedIndex;\r
-               }\r
-               this.search(this.displayField, key, startIndex);\r
-               this.cshTask.delay(this.searchResetDelay);\r
-       },\r
+    onSelect : function(record, index, skipCollapse){\r
+        if(this.fireEvent('beforeselect', this, record, index) !== false){\r
+            this.setValue(record.data[this.valueField || this.displayField]);\r
+            if( !skipCollapse ) {\r
+                this.collapse();\r
+            }\r
+            this.lastSelectedIndex = index + 1;\r
+            this.fireEvent('select', this, record, index);\r
+        }\r
+    },\r
 \r
-       onRender : function(ct, position) {\r
-               this.store.on('load', this.calcRowsPerPage, this);\r
-               Ext.ux.form.SelectBox.superclass.onRender.apply(this, arguments);\r
-               if( this.mode == 'local' ) {\r
-                       this.calcRowsPerPage();\r
-               }\r
-       },\r
+    afterRender : function() {\r
+        Ext.ux.form.SelectBox.superclass.afterRender.apply(this, arguments);\r
+        if(Ext.isWebKit) {\r
+            this.el.swallowEvent('mousedown', true);\r
+        }\r
+        this.el.unselectable();\r
+        this.innerList.unselectable();\r
+        this.trigger.unselectable();\r
+        this.innerList.on('mouseup', function(e, target, options) {\r
+            if( target.id && target.id == this.innerList.id ) {\r
+                return;\r
+            }\r
+            this.onViewClick();\r
+        }, this);\r
 \r
-       onSelect : function(record, index, skipCollapse){\r
-               if(this.fireEvent('beforeselect', this, record, index) !== false){\r
-                       this.setValue(record.data[this.valueField || this.displayField]);\r
-                       if( !skipCollapse ) {\r
-                               this.collapse();\r
-                       }\r
-                       this.lastSelectedIndex = index + 1;\r
-                       this.fireEvent('select', this, record, index);\r
-               }\r
-       },\r
+        this.innerList.on('mouseover', function(e, target, options) {\r
+            if( target.id && target.id == this.innerList.id ) {\r
+                return;\r
+            }\r
+            this.lastSelectedIndex = this.view.getSelectedIndexes()[0] + 1;\r
+            this.cshTask.delay(this.searchResetDelay);\r
+        }, this);\r
 \r
-       render : function(ct) {\r
-               Ext.ux.form.SelectBox.superclass.render.apply(this, arguments);\r
-               if( Ext.isSafari ) {\r
-                       this.el.swallowEvent('mousedown', true);\r
-               }\r
-               this.el.unselectable();\r
-               this.innerList.unselectable();\r
-               this.trigger.unselectable();\r
-               this.innerList.on('mouseup', function(e, target, options) {\r
-                       if( target.id && target.id == this.innerList.id ) {\r
-                               return;\r
-                       }\r
-                       this.onViewClick();\r
-               }, this);\r
-\r
-               this.innerList.on('mouseover', function(e, target, options) {\r
-                       if( target.id && target.id == this.innerList.id ) {\r
-                               return;\r
-                       }\r
-                       this.lastSelectedIndex = this.view.getSelectedIndexes()[0] + 1;\r
-                       this.cshTask.delay(this.searchResetDelay);\r
-               }, this);\r
-\r
-               this.trigger.un('click', this.onTriggerClick, this);\r
-               this.trigger.on('mousedown', function(e, target, options) {\r
-                       e.preventDefault();\r
-                       this.onTriggerClick();\r
-               }, this);\r
-\r
-               this.on('collapse', function(e, target, options) {\r
-                       Ext.getDoc().un('mouseup', this.collapseIf, this);\r
-               }, this, true);\r
-\r
-               this.on('expand', function(e, target, options) {\r
-                       Ext.getDoc().on('mouseup', this.collapseIf, this);\r
-               }, this, true);\r
-       },\r
+        this.trigger.un('click', this.onTriggerClick, this);\r
+        this.trigger.on('mousedown', function(e, target, options) {\r
+            e.preventDefault();\r
+            this.onTriggerClick();\r
+        }, this);\r
 \r
-       clearSearchHistory : function() {\r
-               this.lastSelectedIndex = 0;\r
-               this.lastSearchTerm = false;\r
-       },\r
+        this.on('collapse', function(e, target, options) {\r
+            Ext.getDoc().un('mouseup', this.collapseIf, this);\r
+        }, this, true);\r
 \r
-       selectFirst : function() {\r
-               this.focusAndSelect(this.store.data.first());\r
-       },\r
+        this.on('expand', function(e, target, options) {\r
+            Ext.getDoc().on('mouseup', this.collapseIf, this);\r
+        }, this, true);\r
+    },\r
 \r
-       selectLast : function() {\r
-               this.focusAndSelect(this.store.data.last());\r
-       },\r
+    clearSearchHistory : function() {\r
+        this.lastSelectedIndex = 0;\r
+        this.lastSearchTerm = false;\r
+    },\r
 \r
-       selectPrevPage : function() {\r
-               if( !this.rowHeight ) {\r
-                       return;\r
-               }\r
-               var index = Math.max(this.selectedIndex-this.rowsPerPage, 0);\r
-               this.focusAndSelect(this.store.getAt(index));\r
-       },\r
+    selectFirst : function() {\r
+        this.focusAndSelect(this.store.data.first());\r
+    },\r
 \r
-       selectNextPage : function() {\r
-               if( !this.rowHeight ) {\r
-                       return;\r
-               }\r
-               var index = Math.min(this.selectedIndex+this.rowsPerPage, this.store.getCount() - 1);\r
-               this.focusAndSelect(this.store.getAt(index));\r
-       },\r
+    selectLast : function() {\r
+        this.focusAndSelect(this.store.data.last());\r
+    },\r
 \r
-       search : function(field, value, startIndex) {\r
-               field = field || this.displayField;\r
-               this.lastSearchTerm = value;\r
-               var index = this.store.find.apply(this.store, arguments);\r
-               if( index !== -1 ) {\r
-                       this.focusAndSelect(index);\r
-               }\r
-       },\r
+    selectPrevPage : function() {\r
+        if( !this.rowHeight ) {\r
+            return;\r
+        }\r
+        var index = Math.max(this.selectedIndex-this.rowsPerPage, 0);\r
+        this.focusAndSelect(this.store.getAt(index));\r
+    },\r
 \r
-       focusAndSelect : function(record) {\r
-               var index = typeof record === 'number' ? record : this.store.indexOf(record);\r
-               this.select(index, this.isExpanded());\r
-               this.onSelect(this.store.getAt(record), index, this.isExpanded());\r
-       },\r
+    selectNextPage : function() {\r
+        if( !this.rowHeight ) {\r
+            return;\r
+        }\r
+        var index = Math.min(this.selectedIndex+this.rowsPerPage, this.store.getCount() - 1);\r
+        this.focusAndSelect(this.store.getAt(index));\r
+    },\r
 \r
-       calcRowsPerPage : function() {\r
-               if( this.store.getCount() ) {\r
-                       this.rowHeight = Ext.fly(this.view.getNode(0)).getHeight();\r
-                       this.rowsPerPage = this.maxHeight / this.rowHeight;\r
-               } else {\r
-                       this.rowHeight = false;\r
-               }\r
-       }\r
+    search : function(field, value, startIndex) {\r
+        field = field || this.displayField;\r
+        this.lastSearchTerm = value;\r
+        var index = this.store.find.apply(this.store, arguments);\r
+        if( index !== -1 ) {\r
+            this.focusAndSelect(index);\r
+        }\r
+    },\r
+\r
+    focusAndSelect : function(record) {\r
+        var index = Ext.isNumber(record) ? record : this.store.indexOf(record);\r
+        this.select(index, this.isExpanded());\r
+        this.onSelect(this.store.getAt(index), index, this.isExpanded());\r
+    },\r
+\r
+    calcRowsPerPage : function() {\r
+        if( this.store.getCount() ) {\r
+            this.rowHeight = Ext.fly(this.view.getNode(0)).getHeight();\r
+            this.rowsPerPage = this.maxHeight / this.rowHeight;\r
+        } else {\r
+            this.rowHeight = false;\r
+        }\r
+    }\r
 \r
 });\r
 \r
@@ -5209,6 +6569,7 @@ Ext.ux.SlidingPager = Ext.extend(Object, {
  * @xtype spinnerfield\r
  */\r
 Ext.ux.form.SpinnerField = Ext.extend(Ext.form.NumberField, {\r
+    actionMode: 'wrap',\r
     deferHeight: true,\r
     autoSize: Ext.emptyFn,\r
     onBlur: Ext.emptyFn,\r
@@ -5228,17 +6589,6 @@ Ext.ux.form.SpinnerField = Ext.extend(Ext.form.NumberField, {
                Ext.ux.form.SpinnerField.superclass.constructor.call(this, Ext.apply(config, {plugins: plugins}));\r
        },\r
 \r
-    onShow: function(){\r
-        if (this.wrap) {\r
-            this.wrap.dom.style.display = '';\r
-            this.wrap.dom.style.visibility = 'visible';\r
-        }\r
-    },\r
-\r
-    onHide: function(){\r
-        this.wrap.dom.style.display = 'none';\r
-    },\r
-\r
     // private\r
     getResizeEl: function(){\r
         return this.wrap;\r
@@ -5363,7 +6713,7 @@ Ext.ux.Spinner = Ext.extend(Ext.util.Observable, {
 \r
     doResize: function(w, h){\r
         if (typeof w == 'number') {\r
-            this.el.setWidth(this.field.adjustWidth('input', w - this.trigger.getWidth()));\r
+            this.el.setWidth(w - this.trigger.getWidth());\r
         }\r
         this.wrap.setWidth(this.el.getWidth() + this.trigger.getWidth());\r
     },\r
@@ -5835,7 +7185,430 @@ Ext.ux.Spotlight.prototype = {
 };\r
 \r
 //backwards compat\r
-Ext.Spotlight = Ext.ux.Spotlight;/**\r
+Ext.Spotlight = Ext.ux.Spotlight;/**
+ * @class Ext.ux.StatusBar
+ * <p>Basic status bar component that can be used as the bottom toolbar of any {@link Ext.Panel}.  In addition to
+ * supporting the standard {@link Ext.Toolbar} interface for adding buttons, menus and other items, the StatusBar
+ * provides a greedy status element that can be aligned to either side and has convenient methods for setting the
+ * status text and icon.  You can also indicate that something is processing using the {@link #showBusy} method.</p>
+ * <pre><code>
+new Ext.Panel({
+    title: 'StatusBar',
+    // etc.
+    bbar: new Ext.ux.StatusBar({
+        id: 'my-status',
+
+        // defaults to use when the status is cleared:
+        defaultText: 'Default status text',
+        defaultIconCls: 'default-icon',
+
+        // values to set initially:
+        text: 'Ready',
+        iconCls: 'ready-icon',
+
+        // any standard Toolbar items:
+        items: [{
+            text: 'A Button'
+        }, '-', 'Plain Text']
+    })
+});
+
+// Update the status bar later in code:
+var sb = Ext.getCmp('my-status');
+sb.setStatus({
+    text: 'OK',
+    iconCls: 'ok-icon',
+    clear: true // auto-clear after a set interval
+});
+
+// Set the status bar to show that something is processing:
+sb.showBusy();
+
+// processing....
+
+sb.clearStatus(); // once completeed
+</code></pre>
+ * @extends Ext.Toolbar
+ * @constructor
+ * Creates a new StatusBar
+ * @param {Object/Array} config A config object
+ */
+Ext.ux.StatusBar = Ext.extend(Ext.Toolbar, {
+    /**
+     * @cfg {String} statusAlign
+     * The alignment of the status element within the overall StatusBar layout.  When the StatusBar is rendered,
+     * it creates an internal div containing the status text and icon.  Any additional Toolbar items added in the
+     * StatusBar's {@link #items} config, or added via {@link #add} or any of the supported add* methods, will be
+     * rendered, in added order, to the opposite side.  The status element is greedy, so it will automatically
+     * expand to take up all sapce left over by any other items.  Example usage:
+     * <pre><code>
+// Create a left-aligned status bar containing a button,
+// separator and text item that will be right-aligned (default):
+new Ext.Panel({
+    title: 'StatusBar',
+    // etc.
+    bbar: new Ext.ux.StatusBar({
+        defaultText: 'Default status text',
+        id: 'status-id',
+        items: [{
+            text: 'A Button'
+        }, '-', 'Plain Text']
+    })
+});
+
+// By adding the statusAlign config, this will create the
+// exact same toolbar, except the status and toolbar item
+// layout will be reversed from the previous example:
+new Ext.Panel({
+    title: 'StatusBar',
+    // etc.
+    bbar: new Ext.ux.StatusBar({
+        defaultText: 'Default status text',
+        id: 'status-id',
+        statusAlign: 'right',
+        items: [{
+            text: 'A Button'
+        }, '-', 'Plain Text']
+    })
+});
+</code></pre>
+     */
+    /**
+     * @cfg {String} defaultText
+     * The default {@link #text} value.  This will be used anytime the status bar is cleared with the
+     * <tt>useDefaults:true</tt> option (defaults to '').
+     */
+    /**
+     * @cfg {String} defaultIconCls
+     * The default {@link #iconCls} value (see the iconCls docs for additional details about customizing the icon).
+     * This will be used anytime the status bar is cleared with the <tt>useDefaults:true</tt> option (defaults to '').
+     */
+    /**
+     * @cfg {String} text
+     * A string that will be <b>initially</b> set as the status message.  This string
+     * will be set as innerHTML (html tags are accepted) for the toolbar item.
+     * If not specified, the value set for <code>{@link #defaultText}</code>
+     * will be used.
+     */
+    /**
+     * @cfg {String} iconCls
+     * A CSS class that will be <b>initially</b> set as the status bar icon and is
+     * expected to provide a background image (defaults to '').
+     * Example usage:<pre><code>
+// Example CSS rule:
+.x-statusbar .x-status-custom {
+    padding-left: 25px;
+    background: transparent url(images/custom-icon.gif) no-repeat 3px 2px;
+}
+
+// Setting a default icon:
+var sb = new Ext.ux.StatusBar({
+    defaultIconCls: 'x-status-custom'
+});
+
+// Changing the icon:
+sb.setStatus({
+    text: 'New status',
+    iconCls: 'x-status-custom'
+});
+</code></pre>
+     */
+
+    /**
+     * @cfg {String} cls
+     * The base class applied to the containing element for this component on render (defaults to 'x-statusbar')
+     */
+    cls : 'x-statusbar',
+    /**
+     * @cfg {String} busyIconCls
+     * The default <code>{@link #iconCls}</code> applied when calling
+     * <code>{@link #showBusy}</code> (defaults to <tt>'x-status-busy'</tt>).
+     * It can be overridden at any time by passing the <code>iconCls</code>
+     * argument into <code>{@link #showBusy}</code>.
+     */
+    busyIconCls : 'x-status-busy',
+    /**
+     * @cfg {String} busyText
+     * The default <code>{@link #text}</code> applied when calling
+     * <code>{@link #showBusy}</code> (defaults to <tt>'Loading...'</tt>).
+     * It can be overridden at any time by passing the <code>text</code>
+     * argument into <code>{@link #showBusy}</code>.
+     */
+    busyText : 'Loading...',
+    /**
+     * @cfg {Number} autoClear
+     * The number of milliseconds to wait after setting the status via
+     * <code>{@link #setStatus}</code> before automatically clearing the status
+     * text and icon (defaults to <tt>5000</tt>).  Note that this only applies
+     * when passing the <tt>clear</tt> argument to <code>{@link #setStatus}</code>
+     * since that is the only way to defer clearing the status.  This can
+     * be overridden by specifying a different <tt>wait</tt> value in
+     * <code>{@link #setStatus}</code>. Calls to <code>{@link #clearStatus}</code>
+     * always clear the status bar immediately and ignore this value.
+     */
+    autoClear : 5000,
+
+    /**
+     * @cfg {String} emptyText
+     * The text string to use if no text has been set.  Defaults to
+     * <tt>'&nbsp;'</tt>).  If there are no other items in the toolbar using
+     * an empty string (<tt>''</tt>) for this value would end up in the toolbar
+     * height collapsing since the empty string will not maintain the toolbar
+     * height.  Use <tt>''</tt> if the toolbar should collapse in height
+     * vertically when no text is specified and there are no other items in
+     * the toolbar.
+     */
+    emptyText : '&nbsp;',
+
+    // private
+    activeThreadId : 0,
+
+    // private
+    initComponent : function(){
+        if(this.statusAlign=='right'){
+            this.cls += ' x-status-right';
+        }
+        Ext.ux.StatusBar.superclass.initComponent.call(this);
+    },
+
+    // private
+    afterRender : function(){
+        Ext.ux.StatusBar.superclass.afterRender.call(this);
+
+        var right = this.statusAlign == 'right';
+        this.currIconCls = this.iconCls || this.defaultIconCls;
+        this.statusEl = new Ext.Toolbar.TextItem({
+            cls: 'x-status-text ' + (this.currIconCls || ''),
+            text: this.text || this.defaultText || ''
+        });
+
+        if(right){
+            this.add('->');
+            this.add(this.statusEl);
+        }else{
+            this.insert(0, this.statusEl);
+            this.insert(1, '->');
+        }
+
+//         this.statusEl = td.createChild({
+//             cls: 'x-status-text ' + (this.iconCls || this.defaultIconCls || ''),
+//             html: this.text || this.defaultText || ''
+//         });
+//         this.statusEl.unselectable();
+
+//         this.spacerEl = td.insertSibling({
+//             tag: 'td',
+//             style: 'width:100%',
+//             cn: [{cls:'ytb-spacer'}]
+//         }, right ? 'before' : 'after');
+    },
+
+    /**
+     * Sets the status {@link #text} and/or {@link #iconCls}. Also supports automatically clearing the
+     * status that was set after a specified interval.
+     * @param {Object/String} config A config object specifying what status to set, or a string assumed
+     * to be the status text (and all other options are defaulted as explained below). A config
+     * object containing any or all of the following properties can be passed:<ul>
+     * <li><tt>text</tt> {String} : (optional) The status text to display.  If not specified, any current
+     * status text will remain unchanged.</li>
+     * <li><tt>iconCls</tt> {String} : (optional) The CSS class used to customize the status icon (see
+     * {@link #iconCls} for details). If not specified, any current iconCls will remain unchanged.</li>
+     * <li><tt>clear</tt> {Boolean/Number/Object} : (optional) Allows you to set an internal callback that will
+     * automatically clear the status text and iconCls after a specified amount of time has passed. If clear is not
+     * specified, the new status will not be auto-cleared and will stay until updated again or cleared using
+     * {@link #clearStatus}. If <tt>true</tt> is passed, the status will be cleared using {@link #autoClear},
+     * {@link #defaultText} and {@link #defaultIconCls} via a fade out animation. If a numeric value is passed,
+     * it will be used as the callback interval (in milliseconds), overriding the {@link #autoClear} value.
+     * All other options will be defaulted as with the boolean option.  To customize any other options,
+     * you can pass an object in the format:<ul>
+     *    <li><tt>wait</tt> {Number} : (optional) The number of milliseconds to wait before clearing
+     *    (defaults to {@link #autoClear}).</li>
+     *    <li><tt>anim</tt> {Number} : (optional) False to clear the status immediately once the callback
+     *    executes (defaults to true which fades the status out).</li>
+     *    <li><tt>useDefaults</tt> {Number} : (optional) False to completely clear the status text and iconCls
+     *    (defaults to true which uses {@link #defaultText} and {@link #defaultIconCls}).</li>
+     * </ul></li></ul>
+     * Example usage:<pre><code>
+// Simple call to update the text
+statusBar.setStatus('New status');
+
+// Set the status and icon, auto-clearing with default options:
+statusBar.setStatus({
+    text: 'New status',
+    iconCls: 'x-status-custom',
+    clear: true
+});
+
+// Auto-clear with custom options:
+statusBar.setStatus({
+    text: 'New status',
+    iconCls: 'x-status-custom',
+    clear: {
+        wait: 8000,
+        anim: false,
+        useDefaults: false
+    }
+});
+</code></pre>
+     * @return {Ext.ux.StatusBar} this
+     */
+    setStatus : function(o){
+        o = o || {};
+
+        if(typeof o == 'string'){
+            o = {text:o};
+        }
+        if(o.text !== undefined){
+            this.setText(o.text);
+        }
+        if(o.iconCls !== undefined){
+            this.setIcon(o.iconCls);
+        }
+
+        if(o.clear){
+            var c = o.clear,
+                wait = this.autoClear,
+                defaults = {useDefaults: true, anim: true};
+
+            if(typeof c == 'object'){
+                c = Ext.applyIf(c, defaults);
+                if(c.wait){
+                    wait = c.wait;
+                }
+            }else if(typeof c == 'number'){
+                wait = c;
+                c = defaults;
+            }else if(typeof c == 'boolean'){
+                c = defaults;
+            }
+
+            c.threadId = this.activeThreadId;
+            this.clearStatus.defer(wait, this, [c]);
+        }
+        return this;
+    },
+
+    /**
+     * Clears the status {@link #text} and {@link #iconCls}. Also supports clearing via an optional fade out animation.
+     * @param {Object} config (optional) A config object containing any or all of the following properties.  If this
+     * object is not specified the status will be cleared using the defaults below:<ul>
+     * <li><tt>anim</tt> {Boolean} : (optional) True to clear the status by fading out the status element (defaults
+     * to false which clears immediately).</li>
+     * <li><tt>useDefaults</tt> {Boolean} : (optional) True to reset the text and icon using {@link #defaultText} and
+     * {@link #defaultIconCls} (defaults to false which sets the text to '' and removes any existing icon class).</li>
+     * </ul>
+     * @return {Ext.ux.StatusBar} this
+     */
+    clearStatus : function(o){
+        o = o || {};
+
+        if(o.threadId && o.threadId !== this.activeThreadId){
+            // this means the current call was made internally, but a newer
+            // thread has set a message since this call was deferred.  Since
+            // we don't want to overwrite a newer message just ignore.
+            return this;
+        }
+
+        var text = o.useDefaults ? this.defaultText : this.emptyText,
+            iconCls = o.useDefaults ? (this.defaultIconCls ? this.defaultIconCls : '') : '';
+
+        if(o.anim){
+            // animate the statusEl Ext.Element
+            this.statusEl.el.fadeOut({
+                remove: false,
+                useDisplay: true,
+                scope: this,
+                callback: function(){
+                    this.setStatus({
+                           text: text,
+                           iconCls: iconCls
+                       });
+
+                    this.statusEl.el.show();
+                }
+            });
+        }else{
+            // hide/show the el to avoid jumpy text or icon
+            this.statusEl.hide();
+               this.setStatus({
+                   text: text,
+                   iconCls: iconCls
+               });
+            this.statusEl.show();
+        }
+        return this;
+    },
+
+    /**
+     * Convenience method for setting the status text directly.  For more flexible options see {@link #setStatus}.
+     * @param {String} text (optional) The text to set (defaults to '')
+     * @return {Ext.ux.StatusBar} this
+     */
+    setText : function(text){
+        this.activeThreadId++;
+        this.text = text || '';
+        if(this.rendered){
+            this.statusEl.setText(this.text);
+        }
+        return this;
+    },
+
+    /**
+     * Returns the current status text.
+     * @return {String} The status text
+     */
+    getText : function(){
+        return this.text;
+    },
+
+    /**
+     * Convenience method for setting the status icon directly.  For more flexible options see {@link #setStatus}.
+     * See {@link #iconCls} for complete details about customizing the icon.
+     * @param {String} iconCls (optional) The icon class to set (defaults to '', and any current icon class is removed)
+     * @return {Ext.ux.StatusBar} this
+     */
+    setIcon : function(cls){
+        this.activeThreadId++;
+        cls = cls || '';
+
+        if(this.rendered){
+               if(this.currIconCls){
+                   this.statusEl.removeClass(this.currIconCls);
+                   this.currIconCls = null;
+               }
+               if(cls.length > 0){
+                   this.statusEl.addClass(cls);
+                   this.currIconCls = cls;
+               }
+        }else{
+            this.currIconCls = cls;
+        }
+        return this;
+    },
+
+    /**
+     * Convenience method for setting the status text and icon to special values that are pre-configured to indicate
+     * a "busy" state, usually for loading or processing activities.
+     * @param {Object/String} config (optional) A config object in the same format supported by {@link #setStatus}, or a
+     * string to use as the status text (in which case all other options for setStatus will be defaulted).  Use the
+     * <tt>text</tt> and/or <tt>iconCls</tt> properties on the config to override the default {@link #busyText}
+     * and {@link #busyIconCls} settings. If the config argument is not specified, {@link #busyText} and
+     * {@link #busyIconCls} will be used in conjunction with all of the default options for {@link #setStatus}.
+     * @return {Ext.ux.StatusBar} this
+     */
+    showBusy : function(o){
+        if(typeof o == 'string'){
+            o = {text:o};
+        }
+        o = Ext.applyIf(o || {}, {
+            text: this.busyText,
+            iconCls: this.busyIconCls
+        });
+        return this.setStatus(o);
+    }
+});
+Ext.reg('statusbar', Ext.ux.StatusBar);
+/**\r
  * @class Ext.ux.TabCloseMenu\r
  * @extends Object \r
  * Plugin (ptype = 'tabclosemenu') for adding a close context menu to tabs.\r
@@ -6249,3 +8022,193 @@ Ext.ux.tree.XmlTreeLoader = Ext.extend(Ext.tree.TreeLoader, {
 
 //backwards compat
 Ext.ux.XmlTreeLoader = Ext.ux.tree.XmlTreeLoader;
+/**
+ * @class Ext.ux.ValidationStatus
+ * A {@link Ext.StatusBar} plugin that provides automatic error notification when the
+ * associated form contains validation errors.
+ * @extends Ext.Component
+ * @constructor
+ * Creates a new ValiationStatus plugin
+ * @param {Object} config A config object
+ */
+Ext.ux.ValidationStatus = Ext.extend(Ext.Component, {
+    /**
+     * @cfg {String} errorIconCls
+     * The {@link #iconCls} value to be applied to the status message when there is a
+     * validation error. Defaults to <tt>'x-status-error'</tt>.
+     */
+    errorIconCls : 'x-status-error',
+    /**
+     * @cfg {String} errorListCls
+     * The css class to be used for the error list when there are validation errors.
+     * Defaults to <tt>'x-status-error-list'</tt>.
+     */
+    errorListCls : 'x-status-error-list',
+    /**
+     * @cfg {String} validIconCls
+     * The {@link #iconCls} value to be applied to the status message when the form
+     * validates. Defaults to <tt>'x-status-valid'</tt>.
+     */
+    validIconCls : 'x-status-valid',
+    
+    /**
+     * @cfg {String} showText
+     * The {@link #text} value to be applied when there is a form validation error.
+     * Defaults to <tt>'The form has errors (click for details...)'</tt>.
+     */
+    showText : 'The form has errors (click for details...)',
+    /**
+     * @cfg {String} showText
+     * The {@link #text} value to display when the error list is displayed.
+     * Defaults to <tt>'Click again to hide the error list'</tt>.
+     */
+    hideText : 'Click again to hide the error list',
+    /**
+     * @cfg {String} submitText
+     * The {@link #text} value to be applied when the form is being submitted.
+     * Defaults to <tt>'Saving...'</tt>.
+     */
+    submitText : 'Saving...',
+    
+    // private
+    init : function(sb){
+        sb.on('render', function(){
+            this.statusBar = sb;
+            this.monitor = true;
+            this.errors = new Ext.util.MixedCollection();
+            this.listAlign = (sb.statusAlign=='right' ? 'br-tr?' : 'bl-tl?');
+            
+            if(this.form){
+                this.form = Ext.getCmp(this.form).getForm();
+                this.startMonitoring();
+                this.form.on('beforeaction', function(f, action){
+                    if(action.type == 'submit'){
+                        // Ignore monitoring while submitting otherwise the field validation
+                        // events cause the status message to reset too early
+                        this.monitor = false;
+                    }
+                }, this);
+                var startMonitor = function(){
+                    this.monitor = true;
+                };
+                this.form.on('actioncomplete', startMonitor, this);
+                this.form.on('actionfailed', startMonitor, this);
+            }
+        }, this, {single:true});
+        sb.on({
+            scope: this,
+            afterlayout:{
+                single: true,
+                fn: function(){
+                    // Grab the statusEl after the first layout.
+                    sb.statusEl.getEl().on('click', this.onStatusClick, this, {buffer:200});
+                } 
+            }, 
+            beforedestroy:{
+                single: true,
+                fn: this.onDestroy
+            } 
+        });
+    },
+    
+    // private
+    startMonitoring : function(){
+        this.form.items.each(function(f){
+            f.on('invalid', this.onFieldValidation, this);
+            f.on('valid', this.onFieldValidation, this);
+        }, this);
+    },
+    
+    // private
+    stopMonitoring : function(){
+        this.form.items.each(function(f){
+            f.un('invalid', this.onFieldValidation, this);
+            f.un('valid', this.onFieldValidation, this);
+        }, this);
+    },
+    
+    // private
+    onDestroy : function(){
+        this.stopMonitoring();
+        this.statusBar.statusEl.un('click', this.onStatusClick, this);
+        Ext.ux.ValidationStatus.superclass.onDestroy.call(this);
+    },
+    
+    // private
+    onFieldValidation : function(f, msg){
+        if(!this.monitor){
+            return false;
+        }
+        if(msg){
+            this.errors.add(f.id, {field:f, msg:msg});
+        }else{
+            this.errors.removeKey(f.id);
+        }
+        this.updateErrorList();
+        if(this.errors.getCount() > 0){
+            if(this.statusBar.getText() != this.showText){
+                this.statusBar.setStatus({text:this.showText, iconCls:this.errorIconCls});
+            }
+        }else{
+            this.statusBar.clearStatus().setIcon(this.validIconCls);
+        }
+    },
+    
+    // private
+    updateErrorList : function(){
+        if(this.errors.getCount() > 0){
+               var msg = '<ul>';
+               this.errors.each(function(err){
+                   msg += ('<li id="x-err-'+ err.field.id +'"><a href="#">' + err.msg + '</a></li>');
+               }, this);
+               this.getMsgEl().update(msg+'</ul>');
+        }else{
+            this.getMsgEl().update('');
+        }
+    },
+    
+    // private
+    getMsgEl : function(){
+        if(!this.msgEl){
+            this.msgEl = Ext.DomHelper.append(Ext.getBody(), {
+                cls: this.errorListCls+' x-hide-offsets'
+            }, true);
+            
+            this.msgEl.on('click', function(e){
+                var t = e.getTarget('li', 10, true);
+                if(t){
+                    Ext.getCmp(t.id.split('x-err-')[1]).focus();
+                    this.hideErrors();
+                }
+            }, this, {stopEvent:true}); // prevent anchor click navigation
+        }
+        return this.msgEl;
+    },
+    
+    // private
+    showErrors : function(){
+        this.updateErrorList();
+        this.getMsgEl().alignTo(this.statusBar.getEl(), this.listAlign).slideIn('b', {duration:0.3, easing:'easeOut'});
+        this.statusBar.setText(this.hideText);
+        this.form.getEl().on('click', this.hideErrors, this, {single:true}); // hide if the user clicks directly into the form
+    },
+    
+    // private
+    hideErrors : function(){
+        var el = this.getMsgEl();
+        if(el.isVisible()){
+               el.slideOut('b', {duration:0.2, easing:'easeIn'});
+               this.statusBar.setText(this.showText);
+        }
+        this.form.getEl().un('click', this.hideErrors, this);
+    },
+    
+    // private
+    onStatusClick : function(){
+        if(this.getMsgEl().isVisible()){
+            this.hideErrors();
+        }else if(this.errors.getCount() > 0){
+            this.showErrors();
+        }
+    }
+});
\ No newline at end of file