From b3bd55b4ff17005b2540f63988ddb3f3ea76b89f Mon Sep 17 00:00:00 2001 From: inpos Date: Sat, 11 Aug 2018 18:29:52 +0300 Subject: [PATCH] add Ext.tip --- orun/extjs/base.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/orun/extjs/base.py b/orun/extjs/base.py index 8c11d50..c60b70d 100644 --- a/orun/extjs/base.py +++ b/orun/extjs/base.py @@ -33,6 +33,8 @@ def getCmp(id): def getBody(): return js.JsNode('Ext.getBody()') +tip = js.JsNode('Ext.tip') + class Component(js.JsObject): def __init__(self, *args, **kwargs): super(Component, self).__init__(*args, **kwargs)