From 1caa69e2e4dd100521149f92af35e7ef87bc6fce Mon Sep 17 00:00:00 2001 From: inpos Date: Wed, 8 Aug 2018 19:39:25 +0300 Subject: [PATCH] Ext.getBody() --- orun/extjs/base.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orun/extjs/base.py b/orun/extjs/base.py index 086942f..2e08897 100644 --- a/orun/extjs/base.py +++ b/orun/extjs/base.py @@ -32,6 +32,8 @@ def get(id): def getCmp(id): return js.JsNode('Ext.getCmp(\'%s\')' % id) +def getBody(): + return js.JsNode('Ext.getBody()') class Component(js.JsObject): def __init__(self, *args, **kwargs):