Index: lams_central/web/qb/collectionList.jsp
===================================================================
diff -u -r01936221b19e94859bef8329e3ac12016166294c -rba4cb0681d080596444ca44c644a8ea0fdd8e743
--- lams_central/web/qb/collectionList.jsp (.../collectionList.jsp) (revision 01936221b19e94859bef8329e3ac12016166294c)
+++ lams_central/web/qb/collectionList.jsp (.../collectionList.jsp) (revision ba4cb0681d080596444ca44c644a8ea0fdd8e743)
@@ -56,7 +56,7 @@
guiStyle: "bootstrap",
iconSet: 'fontAwesome',
// data comes from data-collection-* attributes of
tag which is a base for the grid
- caption: collectionGrid.data('collectionName'),
+ caption: collectionGrid.data('collectionTitle'),
datatype: "xml",
url: "qb/collection/getCollectionGridData.do?collectionUid=" + collectionGrid.data('collectionUid'),
height: "100%",
@@ -72,11 +72,13 @@
colNames:[
"ID",
"Name",
+ "Used in # of lessons",
"Stats"
],
colModel:[
{name:'id', index:'uid', sortable:true, width: 10},
{name:'name', index:'name', sortable:true, search:true, autoencode:true},
+ {name: 'usage', index: 'usage', hidden: true},
// formatter gets just question uid and creates a button
{name:'stats', index:'stats', classes: "stats-cell", sortable:false, width: 10, align: "center", formatter: statsLinkFormatter}
],