From 6fb77437513042f3cab383cfaf218317a2e7be7f Mon Sep 17 00:00:00 2001 From: erickson Date: Thu, 28 Sep 2006 21:35:58 +0000 Subject: [PATCH] added the ability to add a column of checkboxes to select objects git-svn-id: svn://svn.open-ils.org/ILS/trunk@6254 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/web/opac/common/js/fm_table_conf.js | 40 +++++++++++++++++++++------- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/Open-ILS/web/opac/common/js/fm_table_conf.js b/Open-ILS/web/opac/common/js/fm_table_conf.js index 1008061857..56fa8890f3 100644 --- a/Open-ILS/web/opac/common/js/fm_table_conf.js +++ b/Open-ILS/web/opac/common/js/fm_table_conf.js @@ -1,5 +1,5 @@ var FM_TABLE_DISPLAY = { - acp : { + 'acp' : { name : 'barcode', fields : [ 'barcode', @@ -15,7 +15,7 @@ var FM_TABLE_DISPLAY = { 'stat_cat_entry_copy_maps', 'status' ], }, - acpn : { + 'acpn' : { name : 'title', fields : [ 'pub', @@ -23,7 +23,7 @@ var FM_TABLE_DISPLAY = { 'value' ] }, - asc : { + 'asc' : { name : 'name', fields : [ 'owner', @@ -31,13 +31,13 @@ var FM_TABLE_DISPLAY = { 'name' ] }, - ascecm : { + 'ascecm' : { fields : [ 'stat_cat', 'stat_cat_entry' ] }, - ccs : { + 'ccs' : { name : 'name' }, - acpl : { + 'acpl' : { name : 'name', fields : [ 'circulate', @@ -46,7 +46,7 @@ var FM_TABLE_DISPLAY = { 'opac_visible' ] }, - au : { + 'au' : { name : 'usrname', fields : [ 'card', @@ -56,10 +56,10 @@ var FM_TABLE_DISPLAY = { 'home_ou', ] }, - aws : { + 'aws' : { name : 'name' }, - mwps : { + 'mwps' : { fields : [ 'workstation', 'cash_payment', @@ -68,12 +68,32 @@ var FM_TABLE_DISPLAY = { ] }, - mups : { + 'mups' : { fields : [ 'usr', 'credit_payment', 'forgive_payment', 'work_payment' ] + }, + 'rr' : { + name : 'name', + fields : [ + 'name', + 'owner', + 'create_time', + 'recur', + 'recurance', + 'description' + ] + }, + 'rt' : { + name : 'name', + fields : [ + 'name', + 'owner', + 'create_time', + 'description' + ] } } -- 2.11.0