]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/conify/global/acq/currency_type.tt2
fixed broken closing bracket, mild code reformatting
[working/Evergreen.git] / Open-ILS / web / templates / default / conify / global / acq / currency_type.tt2
1 [% WRAPPER default/base.tt2 %]
2 <script>
3     dojo.require('openils.widget.AutoGrid');
4     openils.Util.addOnLoad(
5         function() { 
6             grid.loadAll({order_by:{acqct : 'code'}}); 
7         }
8     );
9 </script>
10 <div dojoType="dijit.layout.ContentPane" layoutAlign="top" class='oils-header-panel'>
11     <div>Currency Type</div>
12     <div><button dojoType='dijit.form.Button' onClick='grid.showCreateDialog()'>New</button></div>
13 </div>
14 <div dojoType="dijit.layout.ContentPane" layoutAlign="client" style='height:600px;'>
15     <table  jsId="grid" 
16             dojoType="openils.widget.AutoGrid" 
17             fieldOrder="['code', 'label']"
18             defaultCellWidth='12'
19             query="{code: '*'}" 
20             fmClass='acqct' 
21             editOnEnter='true'>
22     </table>
23 </div>
24 [% END %]
25
26