summaryrefslogtreecommitdiffstats
path: root/funcweb/funcweb/widget_automation.py
diff options
context:
space:
mode:
authormakkalot <makkalot@gmail.com>2008-06-21 20:23:40 +0300
committermakkalot <makkalot@gmail.com>2008-06-21 20:23:40 +0300
commit849bfc4b9ed176c6232fb4fd876bc441cc684a3f (patch)
tree3683b09c4856a3a1f98f49138ca8ceb8d3369b6d /funcweb/funcweb/widget_automation.py
parent67a4dbd5886dc99c2e26c4b39ceb340654e1c2f4 (diff)
downloadfunc-849bfc4b9ed176c6232fb4fd876bc441cc684a3f.tar.gz
func-849bfc4b9ed176c6232fb4fd876bc441cc684a3f.tar.xz
func-849bfc4b9ed176c6232fb4fd876bc441cc684a3f.zip
add validator schema factory results to RemoteForm object
Diffstat (limited to 'funcweb/funcweb/widget_automation.py')
-rw-r--r--funcweb/funcweb/widget_automation.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/funcweb/funcweb/widget_automation.py b/funcweb/funcweb/widget_automation.py
index df521db..e6002e2 100644
--- a/funcweb/funcweb/widget_automation.py
+++ b/funcweb/funcweb/widget_automation.py
@@ -185,7 +185,7 @@ class RemoteFormAutomation(CoreWD):
full_class_name = "funcweb.controllers.Root"
- def __init__(self,generated_fields,*args,**kwarg):
+ def __init__(self,generated_fields,validator_schema,*args,**kwarg):
"""
The constructor part same as normal one except
it takes a WidgetsList object into generated_fields
@@ -195,6 +195,7 @@ class RemoteFormAutomation(CoreWD):
super(RemoteFormAutomation,self).__init__(*args,**kwarg)
self.for_widget = RemoteForm(
fields = generated_fields,
+ validator = validator_schema,
name = "minion_form",
update = "col5",
before='getElement(\'loading\').innerHTML=toHTML(IMG({src:\'../static/images/loading.gif\',width:\'80\',height:\'80\'}));',