]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/web/templates/default/conify/global/config/hold_matrix_matchpoint.tt2
7820791c10c2de9da17a27a5bf7c83aa935b78b3
[working/Evergreen.git] / Open-ILS / web / templates / default / conify / global / config / hold_matrix_matchpoint.tt2
1 [% WRAPPER default/base.tt2 %]
2 <script src='[% ctx.media_prefix %]/js/ui/default/conify/global/config/hold_matrix_matchpoint.js'> </script>
3 <h1>Hold Matrix Matchpoint</h1> <br/>
4
5 <div dojoType="dijit.layout.ContentPane" layoutAlign="top">
6
7     <button dojoType='dijit.form.Button' onclick='deleteFromGrid();'>Delete Selected</button>
8      
9     <div dojoType="dijit.layout.ContentPane" layoutAlign="client" style='height:600px;'>
10         <table jsId="hmGrid" dojoType="dojox.grid.DataGrid" query="{id: '*'}" rowSelector='20px'>
11             <thead>
12                 <tr>
13                     <th field="id">Matchpoint ID</th>
14                     <th field="active" width='auto' editable='true' 
15                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox'>Active?</th>
16                     <th field="user_home_ou" width='auto' editable='true' 
17                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox' get='getOrgInfo'>User Home Library</th>
18                     <th field="request_ou" width='auto' editable='true' 
19                         cellType='dojox.grid.cells.Select' get='getOrgInfo'>Request Library</th>
20                     <th field="pickup_ou" editable='true' cellType='dojox.grid.cells.Select' get='getOrgInfo'>Pickup Library</th>
21                     <th field="item_owning_ou" width='auto' editable='true' 
22                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox' get='getOrgInfo'>Owning Library</th>
23                          <th field="item_circ_ou" width='auto' editable='true' 
24                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox' get='getOrgInfo'>Item Circ Library</th>
25                          <th field="usr_grp" width='auto' editable='true' 
26                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox' get='getGroupName'>User Permission Group</th>
27                          <th field="requestor_grp" width='auto' editable='true' 
28                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox' get='getGroupName'>Requestor Permission Group</th>
29                         <th field="circ_modifier" width='auto' editable='true' 
30                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox'>Circulation Modifier</th>
31                          <th field="marc_type" width='auto' editable='true' 
32                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox' get='getMarcType'>MARC Type</th>
33                          <th field="marc_form" width='auto' editable='true' 
34                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox' get='getMarcForm'>MARC Format</th>
35                          <th field="marc_vr_format" width='auto' editable='true' 
36                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox' get='getVrForm'>Videorecording Format</th>
37                          <th field="ref_flag" width='auto' editable='true' 
38                         cellType='dojox.grid.cells._Widget' widgetClass='dijit.form.TextBox' formatter='formatReference'>Reference?</th>
39                         
40                 </tr>
41             </thead>
42         </table>    
43     </div>
44 </div>
45
46 [% END %]