Item Status->Alternate View support for the dynamic Record Summary
For now, you could put something like this in server/skin/custom.js to re-configure the display:
try {
netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components.interfaces['nsIPrefBranch']);
prefs.setCharPref(
'oils.bib_brief.alternate_copy_summary.dynamic_grid_replacement.data',
js2JSON([
['title', 'edition', 'editor'],
['author', 'pubdate', 'edit_date'],
['call_number', 'tcn', 'create_date']
])
);
} catch(E) {
dump('Error in custom.js trying to set oils.bib_brief.alternate_copy_summary.dynamic_grid_replacement.data: ' + E + '\n');
}
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
Signed-off-by: Bill Erickson <berick@esilibrary.com>