Changeset 9416 for branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funding_sources.html
- Timestamp:
- 04/21/08 17:11:25 (6 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/acq-experiment/Open-ILS/web/oilsweb/oilsweb/templates/oils/default/acq/financial/list_funding_sources.html
r9411 r9416 1 1 # -*- coding: utf-8 -*- 2 2 <%inherit file='../base.html'/> 3 <%namespace file='../../common/widgets.html' name='widget'/>4 3 <%def name="page_title()">${_('Funding Sources')}</%def> 5 4 <%def name="block_content()"> … … 8 7 <div id='oils-acq-list-header-label'>${_('Funding Sources')}</div> 9 8 </div> 10 11 <script src='list_funding_sources.js'> </script>12 9 13 10 <script type="text/javascript"> … … 114 111 cells : [[ 115 112 {name: '${_("ID")}', field: 'id'}, 116 {name: '${_("Name")}', field: "name",width:'auto', get:getName},117 {name: '${_("Owner")}', field: "owner",width:'auto', get:getOrgInfo},113 {name: '${_("Name")}', width:'auto', get:getName}, 114 {name: '${_("Owner")}', width:'auto', get:getOrgInfo}, 118 115 {name: '${_("Currency Type")}', field: "currency_type"}, 119 {name: '${_("Balance")}', field: "balance",get:getBalanceInfo}116 {name: '${_("Balance")}', get:getBalanceInfo} 120 117 ]] 121 118 }]; … … 123 120 openils.acq.FundingSource.createStore( 124 121 function(storeData) { 125 var store = new dojo.data.ItemFile WriteStore({data:storeData});122 var store = new dojo.data.ItemFileReadStore({data:storeData}); 126 123 var model = new dojox.grid.data.DojoData(null, store, 127 124 {rowsPerPage: 20, clientSort: true, query:{id:'*'}});
