summaryrefslogtreecommitdiffstats
path: root/install/static/associate.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/static/associate.js')
-rw-r--r--install/static/associate.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/install/static/associate.js b/install/static/associate.js
index c11642ba..cd07c9f7 100644
--- a/install/static/associate.js
+++ b/install/static/associate.js
@@ -218,8 +218,15 @@ function AssociationList(obj,facet,assignFacet,associationColumns,facets) {
var row = $("<tr/>").appendTo($('#searchResultsTable thead:last'));
for (var k = 0; k < associationColumns.length ;k++){
var column = this.associationColumns[k].column;
+ var link =
+ "#tab="+this.associationColumns[k].title
+ +"&facet=details"
+ +"&pkey="+userData.result.result[column][j];
$("<td/>",{
- html: userData.result.result[column][j]
+ html: $("<a />",{
+ href:link,
+ html:userData.result.result[column][j]
+ })
}).appendTo(row);
}
}