tgext.ajaxforms

Makes easier to create AJAX forms in TurboGears2
Download

tgext.ajaxforms Ranking & Summary

Advertisement

  • Rating:
  • License:
  • MIT/X Consortium Lic...
  • Publisher Name:
  • Alessandro Molina
  • Publisher web site:
  • http://www.objectblues.net/wiki/show/FlatLand

tgext.ajaxforms Tags


tgext.ajaxforms Description

Makes easier to create AJAX forms in TurboGears2 tgext.ajaxforms is a Python module that makes quick and easy to create AJAX loaded and submitted forms in TurboGears2 applications.To make a form ajax based just apply the ajaxforms.ajaxloaded decorator to any ToscaWidgets form and declare a ajaxurl variable to specify the method that loads the form. The method can be automatically generated or hand-written. By default ajax validation is automatically supported.Installingtgext.ajaxform can be installed both from pypi or from bitbucket:easy_install tgext.ajaxformsshould just work for most of the usersMaking an Ajax FormThe form itself can be any ToscaWidgets form, the only required additions are to apply the @ajaxloaded decorator to the form itself and specify the ajaxurl of the form that will point to the related controller method:from tgext.ajaxforms import ajaxloaded@ajaxloadedclass TestForm(twf.TableForm): class fields(WidgetsList): name = twf.TextField('Name', validator=validators.String(not_empty=True)) surname = twf.TextField('Surname', validator=validators.String(not_empty=True)) ajaxurl = '/form_show' action = '/form_submit' submit_text = "GO"test_form = TestForm()Showing The FormTo show the form it is necessary to add a controller method bound to the ajaxurl parameter of the form that will display the form itself and that will be used by ajaxform each time that it has to display the form. For most cases this method can be generated by using the ajaxform call. Also you have to create a page where the form will be loaded.For example to show the form in the index page having ajaxurl = '/form_show':from tgext.ajaxforms import ajaxformclass RootController(BaseController): form_show = ajaxform(test_form) @expose('myapp.templates.index') def index(self): return dict(form=test_form)The myapp.templates.index template should look the usual template that you would use to display a ToscaWidgets based form:< html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://genshi.edgewall.org/" xmlns:xi="http://www.w3.org/2001/XInclude" > < xi:include href="master.html" / > < head > < meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/ > < title >Ajax Form Test Example< /title > < /head > < body > < div id="myform" > ${form(name='HI')} < /div > < /body >< /html >Handling Submit and ValidationSubmit and validation should look the same that you would use for any ToscaWidgets form, simply using the ajaurl bound method as an error_handler:class RootController(BaseController): @expose() @validate(test_form, error_handler=form_show) def form_submit(self, **kw): return 'Thanks: {name} {surname}'.format(**kw)Complete Examplemyapp.templates.index:< html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://genshi.edgewall.org/" xmlns:xi="http://www.w3.org/2001/XInclude" > < xi:include href="master.html" / > < head > < meta content="text/html; charset=UTF-8" http-equiv="content-type" py:replace="''"/ > < title >Ajax Form Test Example< /title > < /head > < body > < div id="myform" > ${form(name='HI')} < /div > < /body >< /html >myapp.controllers.root:from tgext.ajaxforms import ajaxloaded, ajaxform@ajaxloadedclass TestForm(twf.TableForm): class fields(WidgetsList): name = twf.TextField('Name', validator=validators.String(not_empty=True)) surname = twf.TextField('Surname', validator=validators.String(not_empty=True)) ajaxurl = '/form_show' action = '/form_submit' submit_text = "GO"test_form = TestForm()class RootController(BaseController): form_show = ajaxform(test_form) @expose('myapp.templates.index') def index(self): return dict(form=test_form) @expose() @validate(test_form, error_handler=form_show) def form_submit(self, **kw): return 'Thanks: {name} {surname}'.format(**kw) Requirements: · Python


tgext.ajaxforms Related Software