Skip to content
Snippets Groups Projects
Commit 8c38d139 authored by LE GAC Renaud's avatar LE GAC Renaud
Browse files

The python binding of the ExtJS components inherited from gluon.storage.Storage instead of dict.

parent 3bea143d
No related branches found
No related tags found
No related merge requests found
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
""" """
from gluon import current from gluon import current
from gluon.storage import Storage
from gluon.tools import PluginManager from gluon.tools import PluginManager
MSG_XTYPE = 'Invalid keyword "xtype"' MSG_XTYPE = 'Invalid keyword "xtype"'
...@@ -13,7 +14,7 @@ MSG_XTYPE = 'Invalid keyword "xtype"' ...@@ -13,7 +14,7 @@ MSG_XTYPE = 'Invalid keyword "xtype"'
class ExtJSException(BaseException): pass class ExtJSException(BaseException): pass
class Base(dict): class Base(Storage):
"""Base class for Ext JS configurator. """Base class for Ext JS configurator.
The base class comes with two methods C{append_items} The base class comes with two methods C{append_items}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment