您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

410 行
23 KiB

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6. <title>Report Builder &mdash; Documentation</title>
  7. <link rel="stylesheet" href="_static/sphinxdoc.css" type="text/css" />
  8. <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
  9. <script type="text/javascript">
  10. var DOCUMENTATION_OPTIONS = {
  11. URL_ROOT: '',
  12. VERSION: '',
  13. COLLAPSE_MODINDEX: false,
  14. FILE_SUFFIX: '.html',
  15. HAS_SOURCE: true
  16. };
  17. </script>
  18. <script type="text/javascript" src="_static/jquery.js"></script>
  19. <script type="text/javascript" src="_static/doctools.js"></script>
  20. <link rel="top" title="Documentation" href="index.html" />
  21. <link rel="up" title="4. Client Side API" href="client_side_widgets.html" />
  22. <link rel="next" title="Dialog Boxes" href="dialog.html" />
  23. <link rel="prev" title="Form Widget API" href="form_widget.html" />
  24. </head>
  25. <body>
  26. <div style="background-color: #FFF; text-align: left; padding: 8px 0px"><img src="_static/banner300910.gif"></div>
  27. <div class="related">
  28. <h3>Navigation</h3>
  29. <ul>
  30. <li class="right" style="margin-right: 10px">
  31. <a href="genindex.html" title="General Index"
  32. accesskey="I">index</a></li>
  33. <li class="right" >
  34. <a href="modindex.html" title="Global Module Index"
  35. accesskey="M">modules</a> |</li>
  36. <li class="right" >
  37. <a href="dialog.html" title="Dialog Boxes"
  38. accesskey="N">next</a> |</li>
  39. <li class="right" >
  40. <a href="form_widget.html" title="Form Widget API"
  41. accesskey="P">previous</a> |</li>
  42. <li><a href="index.html">Documentation</a> &raquo;</li>
  43. <li><a href="client_side_widgets.html" accesskey="U">4. Client Side API</a> &raquo;</li>
  44. </ul>
  45. </div>
  46. <div class="sphinxsidebar">
  47. <div class="sphinxsidebarwrapper">
  48. <h3><a href="index.html">Table Of Contents</a></h3>
  49. <ul>
  50. <li><a class="reference external" href="">Report Builder</a><ul>
  51. <li><a class="reference external" href="#search-criteria">Search Criteria</a></li>
  52. <li><a class="reference external" href="#customizing-filters">Customizing Filters</a></li>
  53. <li><a class="reference external" href="#scrubbing-modifying-data-from-the-query">Scrubbing / modifying data from the query</a></li>
  54. <li><a class="reference external" href="#adding-style-to-the-result">Adding style to the result</a></li>
  55. <li><a class="reference external" href="#generating-a-query-by-script-from-client-side">Generating a query by script from client side</a></li>
  56. <li><a class="reference external" href="#report-builder-api">Report Builder API</a></li>
  57. <li><a class="reference external" href="#report-builder-container">Report Builder Container</a></li>
  58. <li><a class="reference external" href="#report-builder-class">Report Builder Class</a></li>
  59. <li><a class="reference external" href="#datatable-class">Datatable Class</a></li>
  60. </ul>
  61. </li>
  62. </ul>
  63. <h4>Previous topic</h4>
  64. <p class="topless"><a href="form_widget.html"
  65. title="previous chapter">Form Widget API</a></p>
  66. <h4>Next topic</h4>
  67. <p class="topless"><a href="dialog.html"
  68. title="next chapter">Dialog Boxes</a></p>
  69. <h3>This Page</h3>
  70. <ul class="this-page-menu">
  71. <li><a href="_sources/report_builder.txt"
  72. rel="nofollow">Show Source</a></li>
  73. </ul>
  74. <div id="searchbox" style="display: none">
  75. <h3>Quick search</h3>
  76. <form class="search" action="search.html" method="get">
  77. <input type="text" name="q" size="18" />
  78. <input type="submit" value="Go" />
  79. <input type="hidden" name="check_keywords" value="yes" />
  80. <input type="hidden" name="area" value="default" />
  81. </form>
  82. <p class="searchtip" style="font-size: 90%">
  83. Enter search terms or a module, class or function name.
  84. </p>
  85. </div>
  86. <script type="text/javascript">$('#searchbox').show(0);</script>
  87. </div>
  88. </div>
  89. <div class="document">
  90. <div class="documentwrapper">
  91. <div class="bodywrapper">
  92. <div class="body">
  93. <div class="section" id="report-builder">
  94. <h1>Report Builder<a class="headerlink" href="#report-builder" title="Permalink to this headline">¶</a></h1>
  95. <p>The Report Builder structure is as follows:</p>
  96. <div class="highlight-python"><pre>+- Report Builder Container
  97. |
  98. +- Report Builder (DocType 1)
  99. | |
  100. | +- DataTable (Output grid)
  101. |
  102. +- Report Bulder (DocType 2)
  103. |
  104. ..
  105. ..</pre>
  106. </div>
  107. <div class="section" id="search-criteria">
  108. <h2>Search Criteria<a class="headerlink" href="#search-criteria" title="Permalink to this headline">¶</a></h2>
  109. <p>Reports with selected columns and filters can be saved by clicking on the &#8220;Save&#8221; link on the top bar of
  110. the Report Builder. The report is saved in a record called <cite>Search Criteria</cite>. Client-side and server-side
  111. scripts can be plugged in by using the <cite>Search Criteria</cite>.</p>
  112. </div>
  113. <div class="section" id="customizing-filters">
  114. <h2>Customizing Filters<a class="headerlink" href="#customizing-filters" title="Permalink to this headline">¶</a></h2>
  115. <p>Customizing of filters is done by declaring the <cite>report.customize_filters</cite> method in the client side of the
  116. <cite>Search Critiera</cite>.</p>
  117. <ul class="simple">
  118. <li>Individual filters in the Report Builder can be accessed by the <cite>filter_fields_dict</cite>. The filter_fields_dict
  119. returns a <a title="_f.Field" class="reference external" href="form_widget.html#_f.Field"><tt class="xref docutils literal"><span class="pre">_f.Field</span></tt></a> object.</li>
  120. <li>Filters can be added by using the <cite>add_filter</cite> method</li>
  121. <li>The filters can be customized by setting properties on the <cite>df</cite> dictionary of the field object.</li>
  122. </ul>
  123. <p>Custom properties of filter fields are</p>
  124. <ul class="simple">
  125. <li><cite>filter_hide</cite> - Hide this standard filter</li>
  126. <li><cite>in_first_page</cite> - Show this filter in the first page</li>
  127. <li><cite>report_default</cite> - Set the value as the default for the filter</li>
  128. <li><cite>insert_before</cite> - Insert this filter before the fieldname identified by this property</li>
  129. <li><cite>ignore</cite> - Ignore this field while building the query</li>
  130. <li><cite>custom</cite> - A property that indicates whether the filter is a custom filter (not a standard field)</li>
  131. </ul>
  132. <p>Example:</p>
  133. <div class="highlight-python"><pre>report.customize_filters = function() {
  134. // hide exiting filters
  135. this.hide_all_filters();
  136. // add a new filter
  137. this.add_filter({fieldname:'show_group_balance', label:'Show Group Balance', fieldtype:'Select', options:NEWLINE+'Yes'+NEWLINE+'No',ignore : 1, parent:'Account'});
  138. // show a filter
  139. this.set_filter_properties('Account','Company',{filter_hide: 0});
  140. // remove limts - show all records
  141. this.dt.set_no_limit(1);
  142. // hide tabs
  143. $dh(this.mytabs.tabs['Select Columns'])
  144. }</pre>
  145. </div>
  146. </div>
  147. <div class="section" id="scrubbing-modifying-data-from-the-query">
  148. <h2>Scrubbing / modifying data from the query<a class="headerlink" href="#scrubbing-modifying-data-from-the-query" title="Permalink to this headline">¶</a></h2>
  149. <p>The query can be scrubbed on the server side in Python before it. The result data is available as a list-in-a-list
  150. <cite>res</cite>. The output can be modified by updating <cite>res</cite> or declaring a new list-in-a-list <cite>out</cite></p>
  151. <p>Standard lists, dictionary that can be updated</p>
  152. <ul class="simple">
  153. <li><cite>col_idx</cite> - Index of columns by label</li>
  154. <li><cite>colwidths</cite> - list of column widths</li>
  155. <li><cite>colnames</cite> - list of column names</li>
  156. <li><cite>coltypes</cite> - list of column types</li>
  157. <li><cite>colwidths</cite> - list of column <cite>options</cite></li>
  158. <li><cite>filter_values</cite> - dictionary containing values of all filters</li>
  159. </ul>
  160. <p>Example - adding a column:</p>
  161. <div class="highlight-python"><div class="highlight"><pre><span class="n">colnames</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s">&#39;Total&#39;</span><span class="p">)</span>
  162. <span class="n">coltypes</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s">&#39;Currency&#39;</span><span class="p">)</span>
  163. <span class="n">colwidths</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s">&#39;120px&#39;</span><span class="p">)</span>
  164. <span class="n">coloptions</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="s">&#39;&#39;</span><span class="p">)</span>
  165. <span class="c"># set the index</span>
  166. <span class="n">col_idx</span><span class="p">[</span><span class="n">c</span><span class="p">[</span><span class="mi">0</span><span class="p">]]</span> <span class="o">=</span> <span class="nb">len</span><span class="p">(</span><span class="n">colnames</span><span class="p">)</span><span class="o">-</span><span class="mi">1</span>
  167. </pre></div>
  168. </div>
  169. <p>Example - adding the column data:</p>
  170. <div class="highlight-python"><div class="highlight"><pre><span class="nb">sum</span> <span class="o">=</span> <span class="mi">0</span>
  171. <span class="k">for</span> <span class="n">r</span> <span class="ow">in</span> <span class="n">res</span><span class="p">:</span>
  172. <span class="c"># get the total as sum of 2 columns</span>
  173. <span class="n">t</span> <span class="o">=</span> <span class="n">r</span><span class="p">[</span><span class="n">col_idx</span><span class="p">[</span><span class="s">&#39;Val 1&#39;</span><span class="p">]]</span> <span class="o">+</span> <span class="n">r</span><span class="p">[</span><span class="n">col_idx</span><span class="p">[</span><span class="s">&#39;Val 2&#39;</span><span class="p">]]</span>
  174. <span class="nb">sum</span> <span class="o">+=</span> <span class="n">t</span>
  175. <span class="c"># add it to the record</span>
  176. <span class="n">r</span><span class="o">.</span><span class="n">push</span><span class="p">(</span><span class="n">t</span><span class="p">)</span>
  177. </pre></div>
  178. </div>
  179. <p>Example - getting value from a filter:</p>
  180. <div class="highlight-python"><div class="highlight"><pre><span class="k">if</span> <span class="n">filter_values</span><span class="o">.</span><span class="n">get</span><span class="p">(</span><span class="s">&#39;Show sum&#39;</span><span class="p">)</span><span class="o">==</span><span class="s">&#39;Yes&#39;</span><span class="p">:</span>
  181. <span class="n">res</span><span class="o">.</span><span class="n">append</span><span class="p">([</span><span class="s">&#39;&#39;</span><span class="p">,</span><span class="s">&#39;&#39;</span><span class="p">,</span><span class="s">&#39;&#39;</span><span class="p">,</span> <span class="nb">sum</span><span class="p">])</span>
  182. </pre></div>
  183. </div>
  184. </div>
  185. <div class="section" id="adding-style-to-the-result">
  186. <h2>Adding style to the result<a class="headerlink" href="#adding-style-to-the-result" title="Permalink to this headline">¶</a></h2>
  187. <p>Style can be set on a row by declaring the <cite>beforerowprint</cite> method in the Client Script of the <cite>Search Criteria</cite>
  188. Example:</p>
  189. <div class="highlight-python"><pre>// Example 1: set foreground
  190. report.beforerowprint = function(row){
  191. if(row.data[‘Amount’] &gt; 20000) {
  192. row.style.color = ‘GREEN’;
  193. }
  194. }
  195. // Example 2: set background
  196. report.beforerowprint = function(row){
  197. if(row.data[‘Amount’] &lt; 1000) {
  198. row.style.backgroundColor = ‘#FDD’;
  199. }
  200. }</pre>
  201. </div>
  202. </div>
  203. <div class="section" id="generating-a-query-by-script-from-client-side">
  204. <h2>Generating a query by script from client side<a class="headerlink" href="#generating-a-query-by-script-from-client-side" title="Permalink to this headline">¶</a></h2>
  205. <p>A query can be generated from a script from the client side like in Listing by declaring the <cite>get_query</cite> method.
  206. Note: Do not put ORDER BY and LIMIT as they would be appended by the Report Builder. There are 2 useful lists</p>
  207. <blockquote>
  208. <ul class="simple">
  209. <li>report.selected_fields - list of selected fields in <cite>Table_Name</cite>.`field_name` format</li>
  210. <li>report.filter_vals - dictionary of filter keys and values</li>
  211. </ul>
  212. </blockquote>
  213. <p>Example:</p>
  214. <div class="highlight-python"><pre>report.get_query = function() {
  215. var query = 'SELECT ' + report.selected_fields.join(', ') + 'FROM `tab..` WHERE ...';
  216. return query;
  217. }</pre>
  218. </div>
  219. </div>
  220. <div class="section" id="report-builder-api">
  221. <h2>Report Builder API<a class="headerlink" href="#report-builder-api" title="Permalink to this headline">¶</a></h2>
  222. <dl class="data">
  223. <dt id="_r">
  224. <tt class="descname">_r</tt><a class="headerlink" href="#_r" title="Permalink to this definition">¶</a></dt>
  225. <dd>Namespace for all objects related to Report Builder</dd></dl>
  226. </div>
  227. <div class="section" id="report-builder-container">
  228. <h2>Report Builder Container<a class="headerlink" href="#report-builder-container" title="Permalink to this headline">¶</a></h2>
  229. <p>The Report Builder Container is the object that contains ReportBuilder objects for each DocType. This object
  230. is managed automatically by the Framework</p>
  231. <dl class="class">
  232. <dt id="_r.ReportBuilderContainer">
  233. <em class="property">class </em><tt class="descclassname">_r.</tt><tt class="descname">ReportBuilderContainer</tt><a class="headerlink" href="#_r.ReportBuilderContainer" title="Permalink to this definition">¶</a></dt>
  234. <dd><dl class="data">
  235. <dt id="_r.ReportBuilderContainer.rb_dict">
  236. <tt class="descname">rb_dict</tt><a class="headerlink" href="#_r.ReportBuilderContainer.rb_dict" title="Permalink to this definition">¶</a></dt>
  237. <dd>Dictionary of all ReportBuilders. Key is the <cite>DocType</cite></dd></dl>
  238. </dd></dl>
  239. </div>
  240. <div class="section" id="report-builder-class">
  241. <h2>Report Builder Class<a class="headerlink" href="#report-builder-class" title="Permalink to this headline">¶</a></h2>
  242. <dl class="class">
  243. <dt id="_r.ReportBuilder">
  244. <em class="property">class </em><tt class="descclassname">_r.</tt><tt class="descname">ReportBuilder</tt><a class="headerlink" href="#_r.ReportBuilder" title="Permalink to this definition">¶</a></dt>
  245. <dd><dl class="data">
  246. <dt id="_r.ReportBuilder.large_report">
  247. <tt class="descname">large_report</tt><a class="headerlink" href="#_r.ReportBuilder.large_report" title="Permalink to this definition">¶</a></dt>
  248. <dd>Flag indicating a report with many records as output. This will force the user to use &#8220;Export&#8221; only</dd></dl>
  249. <dl class="data">
  250. <dt id="_r.ReportBuilder.filter_fields">
  251. <tt class="descname">filter_fields</tt><a class="headerlink" href="#_r.ReportBuilder.filter_fields" title="Permalink to this definition">¶</a></dt>
  252. <dd>List of all filter fields</dd></dl>
  253. <dl class="data">
  254. <dt id="_r.ReportBuilder.filter_fields_dict">
  255. <tt class="descname">filter_fields_dict</tt><a class="headerlink" href="#_r.ReportBuilder.filter_fields_dict" title="Permalink to this definition">¶</a></dt>
  256. <dd>Dictionary of all filter fields. The key of this dictionary is the doctype + <cite>FILTER_SEP</cite> + label</dd></dl>
  257. <dl class="data">
  258. <dt id="_r.ReportBuilder.dt">
  259. <tt class="descname">dt</tt><a class="headerlink" href="#_r.ReportBuilder.dt" title="Permalink to this definition">¶</a></dt>
  260. <dd>Reference to the <a title="_r.Datatable" class="reference internal" href="#_r.Datatable"><tt class="xref docutils literal"><span class="pre">_r.Datatable</span></tt></a> object of the Report Builder</dd></dl>
  261. <dl class="data">
  262. <dt id="_r.ReportBuilder.mytabs">
  263. <tt class="descname">mytabs</tt><a class="headerlink" href="#_r.ReportBuilder.mytabs" title="Permalink to this definition">¶</a></dt>
  264. <dd><p><cite>TabbedPage</cite> object representing the tabs of the Report Builder. This can be used to hide / show
  265. tabs from the Client Script in the report like:</p>
  266. <div class="highlight-python"><pre>$dh(this.mytabs.tabs['Select Columns'])</pre>
  267. </div>
  268. </dd></dl>
  269. <dl class="function">
  270. <dt id="_r.ReportBuilder.customize_filters">
  271. <tt class="descname">customize_filters</tt><big>(</big><em>report</em><big>)</big><a class="headerlink" href="#_r.ReportBuilder.customize_filters" title="Permalink to this definition">¶</a></dt>
  272. <dd>The method is called when a new report or Search Criteria is loaded. The method (if exists)
  273. is usually used to customize filters as per the user requirments.</dd></dl>
  274. <dl class="function">
  275. <dt id="_r.ReportBuilder.hide_all_filters">
  276. <tt class="descname">hide_all_filters</tt><big>(</big><big>)</big><a class="headerlink" href="#_r.ReportBuilder.hide_all_filters" title="Permalink to this definition">¶</a></dt>
  277. <dd>Will set the <cite>df</cite>.`filter_hide` property and hide all filters</dd></dl>
  278. <dl class="function">
  279. <dt id="_r.ReportBuilder.set_column">
  280. <tt class="descname">set_column</tt><big>(</big><em>doctype</em>, <em>label</em>, <em>value</em><big>)</big><a class="headerlink" href="#_r.ReportBuilder.set_column" title="Permalink to this definition">¶</a></dt>
  281. <dd>Select / unselect a column. <cite>value</cite> must be 0 or 1</dd></dl>
  282. <dl class="function">
  283. <dt id="_r.ReportBuilder.set_filter">
  284. <tt class="descname">set_filter</tt><big>(</big><em>doctype</em>, <em>label</em>, <em>value</em><big>)</big><a class="headerlink" href="#_r.ReportBuilder.set_filter" title="Permalink to this definition">¶</a></dt>
  285. <dd>Set the value of a filter</dd></dl>
  286. <dl class="function">
  287. <dt id="_r.ReportBuilder.set_filter_properties">
  288. <tt class="descname">set_filter_properties</tt><big>(</big><em>doctype</em>, <em>label</em>, <em>property_dict</em><big>)</big><a class="headerlink" href="#_r.ReportBuilder.set_filter_properties" title="Permalink to this definition">¶</a></dt>
  289. <dd>Set field properties on a filter as specified in property dict</dd></dl>
  290. <dl class="function">
  291. <dt id="_r.ReportBuilder.add_filter">
  292. <tt class="descname">add_filter</tt><big>(</big><em>f</em><big>)</big><a class="headerlink" href="#_r.ReportBuilder.add_filter" title="Permalink to this definition">¶</a></dt>
  293. <dd>Add a filter in the by specifying the field properties in a dictionary.</dd></dl>
  294. <dl class="function">
  295. <dt id="_r.ReportBuilder.get_filter">
  296. <tt class="descname">get_filter</tt><big>(</big><em>doctype</em>, <em>label</em><big>)</big><a class="headerlink" href="#_r.ReportBuilder.get_filter" title="Permalink to this definition">¶</a></dt>
  297. <dd>Returns the <cite>Field</cite> object of that filter</dd></dl>
  298. <dl class="function">
  299. <dt id="_r.ReportBuilder.run">
  300. <tt class="descname">run</tt><big>(</big><big>)</big><a class="headerlink" href="#_r.ReportBuilder.run" title="Permalink to this definition">¶</a></dt>
  301. <dd>Execute the report</dd></dl>
  302. </dd></dl>
  303. </div>
  304. <div class="section" id="datatable-class">
  305. <h2>Datatable Class<a class="headerlink" href="#datatable-class" title="Permalink to this headline">¶</a></h2>
  306. <dl class="class">
  307. <dt id="_r.Datatable">
  308. <em class="property">class </em><tt class="descclassname">_r.</tt><tt class="descname">Datatable</tt><big>(</big><em>html_fieldname</em>, <em>dt</em>, <em>repname</em>, <em>hide_toolbar</em><big>)</big><a class="headerlink" href="#_r.Datatable" title="Permalink to this definition">¶</a></dt>
  309. <dd><p>The datatable class represents a grid object to show the results with paging etc</p>
  310. <dl class="function">
  311. <dt id="_r.Datatable.add_sort_option">
  312. <tt class="descname">add_sort_option</tt><big>(</big><em>label</em>, <em>value</em><big>)</big><a class="headerlink" href="#_r.Datatable.add_sort_option" title="Permalink to this definition">¶</a></dt>
  313. <dd><p>Add a new field for sorting selection - value is the tablename.fieldname for the &#8220;ORDER BY&#8221; clause:</p>
  314. <div class="highlight-python"><div class="highlight"><pre><span class="n">report</span><span class="o">.</span><span class="n">dt</span><span class="o">.</span><span class="n">add_sort_option</span><span class="p">(</span><span class="s">&#39;ID&#39;</span><span class="p">,</span><span class="s">&#39;`tabMyDT`.`name`&#39;</span><span class="p">);</span>
  315. </pre></div>
  316. </div>
  317. </dd></dl>
  318. <dl class="function">
  319. <dt id="_r.Datatable.set_sort_option_disabled">
  320. <tt class="descname">set_sort_option_disabled</tt><big>(</big><em>label</em>, <em>disabled</em><big>)</big><a class="headerlink" href="#_r.Datatable.set_sort_option_disabled" title="Permalink to this definition">¶</a></dt>
  321. <dd>Will enable / disable sort option by label. To disable, pass disabled = 1 or to enable pass disabled = 0</dd></dl>
  322. <dl class="attribute">
  323. <dt id="_r.Datatable.query">
  324. <tt class="descname">query</tt><a class="headerlink" href="#_r.Datatable.query" title="Permalink to this definition">¶</a></dt>
  325. <dd>Query to be executed (the paging using <cite>LIMIT</cite> &amp; sorting is managed by the datatable)</dd></dl>
  326. <dl class="attribute">
  327. <dt id="_r.Datatable.page_len">
  328. <tt class="descname">page_len</tt><a class="headerlink" href="#_r.Datatable.page_len" title="Permalink to this definition">¶</a></dt>
  329. <dd>Length of a page (default 50)</dd></dl>
  330. <dl class="method">
  331. <dt id="_r.Datatable.set_no_limit">
  332. <tt class="descname">set_no_limit</tt><big>(</big><em>value</em><big>)</big><a class="headerlink" href="#_r.Datatable.set_no_limit" title="Permalink to this definition">¶</a></dt>
  333. <dd>Run the query without adding limits if value = 1, (if value=0) run as standard, with limits</dd></dl>
  334. <dl class="method">
  335. <dt id="_r.Datatable.run">
  336. <tt class="descname">run</tt><big>(</big><big>)</big><a class="headerlink" href="#_r.Datatable.run" title="Permalink to this definition">¶</a></dt>
  337. <dd>Execute the query</dd></dl>
  338. </dd></dl>
  339. </div>
  340. </div>
  341. </div>
  342. </div>
  343. </div>
  344. <div class="clearer"></div>
  345. </div>
  346. <div class="related">
  347. <h3>Navigation</h3>
  348. <ul>
  349. <li class="right" style="margin-right: 10px">
  350. <a href="genindex.html" title="General Index"
  351. >index</a></li>
  352. <li class="right" >
  353. <a href="modindex.html" title="Global Module Index"
  354. >modules</a> |</li>
  355. <li class="right" >
  356. <a href="dialog.html" title="Dialog Boxes"
  357. >next</a> |</li>
  358. <li class="right" >
  359. <a href="form_widget.html" title="Form Widget API"
  360. >previous</a> |</li>
  361. <li><a href="index.html">Documentation</a> &raquo;</li>
  362. <li><a href="client_side_widgets.html" >4. Client Side API</a> &raquo;</li>
  363. </ul>
  364. </div>
  365. <div class="footer">
  366. &copy; Copyright 2010, Rushabh Mehta.
  367. Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 0.6.3.
  368. </div>
  369. </body>
  370. </html>