c2a4228aa50d5eb301a96dd7381be2be6af28d00.svn-base 438 B

123456789101112131415161718
  1. /*
  2. * Ext JS Library 2.0 Copyright(c) 2006-2007, Ext JS, LLC. licensing@extjs.com
  3. *
  4. * http://extjs.com/license
  5. */
  6. Ext.grid.GridEditor = function(B, A) {
  7. Ext.grid.GridEditor.superclass.constructor.call(this, B, A);
  8. B.monitorTab = false
  9. };
  10. Ext.extend(Ext.grid.GridEditor, Ext.Editor, {
  11. alignment : "tl-tl",
  12. autoSize : "width",
  13. hideEl : false,
  14. cls : "x-small-editor x-grid-editor",
  15. shim : false,
  16. shadow : false
  17. });