X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=docs%2Fsrc%2FRoo_grid_GridEditor.js.html;fp=docs%2Fsrc%2FRoo_grid_GridEditor.js.html;h=e360b585e331fd122698f876366908cac225e1b5;hb=9ff8ded6bbbd258ecd646184ba26020874e2c085;hp=0000000000000000000000000000000000000000;hpb=2542b67d1a0768025056f2f330bfe50b64d1ad38;p=roojs1 diff --git a/docs/src/Roo_grid_GridEditor.js.html b/docs/src/Roo_grid_GridEditor.js.html new file mode 100644 index 0000000000..e360b585e3 --- /dev/null +++ b/docs/src/Roo_grid_GridEditor.js.html @@ -0,0 +1,42 @@ +/home/alan/gitlive/roojs1/Roo/grid/GridEditor.js/* + * Based on: + * Ext JS Library 1.1.1 + * Copyright(c) 2006-2007, Ext JS, LLC. + * + * Originally Released Under LGPL - original licence link has changed is not relivant. + * + * Fork - LGPL + * <script type="text/javascript"> + */ + +// private - not really -- you end up using it ! +// This is a support class used internally by the Grid components + +/** + * @class Roo.grid.GridEditor + * @extends Roo.Editor + * Class for creating and editable grid elements. + * @param {Object} config any settings (must include field) + */ +Roo.grid.GridEditor = function(field, config){ + if (!config && field.field) { + config = field; + field = Roo.factory(config.field, Roo.form); + } + Roo.grid.GridEditor.superclass.constructor.call(this, field, config); + field.monitorTab = false; +}; + +Roo.extend(Roo.grid.GridEditor, Roo.Editor, { + + /** + * @cfg {Roo.form.Field} field Field to wrap (or xtyped) + */ + + alignment: "tl-tl", + autoSize: "width", + hideEl : false, + cls: "x-small-editor x-grid-editor", + shim:false, + shadow:"frame" +}); \ No newline at end of file