diff --git a/module/kanban/js/common.js b/module/kanban/js/common.js
index c9177e6d58..b43b7235a7 100644
--- a/module/kanban/js/common.js
+++ b/module/kanban/js/common.js
@@ -68,3 +68,17 @@ function setTargetLane(targetLaneID)
{
$('#targetLane').val(targetLaneID);
}
+
+/**
+ * Jump to the view page.
+ *
+ * @param string $module
+ * @param int $objectID
+ * @access public
+ * @return void
+ */
+function locateView(module, objectID)
+{
+ var dataApp = module == 'productplan' || module == 'release' ? 'product' : 'execution';
+ parent.$.apps.open(createLink(module, 'view', 'objectID=' + objectID), dataApp);
+}
diff --git a/module/kanban/view/importbuild.html.php b/module/kanban/view/importbuild.html.php
index a897d42a61..993318b9e9 100644
--- a/module/kanban/view/importbuild.html.php
+++ b/module/kanban/view/importbuild.html.php
@@ -59,7 +59,9 @@
productName;?> |
- id", $build->name, '', "class='iframe'", true, true);?> |
+
+ name;?>
+ |
name;?> |
diff --git a/module/kanban/view/importexecution.html.php b/module/kanban/view/importexecution.html.php
index d769da5b32..3a250a611f 100644
--- a/module/kanban/view/importexecution.html.php
+++ b/module/kanban/view/importexecution.html.php
@@ -62,7 +62,9 @@
id);?>
- id", $execution->name, '', "class='iframe'", true, true);?> |
+
+ name;?>
+ |
name;?> |
diff --git a/module/kanban/view/importplan.html.php b/module/kanban/view/importplan.html.php
index a07cd9ea09..cd59825421 100644
--- a/module/kanban/view/importplan.html.php
+++ b/module/kanban/view/importplan.html.php
@@ -60,7 +60,9 @@
id);?>
- id", $plan->title, '', "class='iframe'", true, true);?> |
+
+ title;?>
+ |
title;?> |
diff --git a/module/kanban/view/importrelease.html.php b/module/kanban/view/importrelease.html.php
index ff123b3590..2280424d87 100644
--- a/module/kanban/view/importrelease.html.php
+++ b/module/kanban/view/importrelease.html.php
@@ -59,7 +59,9 @@
id);?>
- id", $release->name, '', "class='iframe'", true, true);?> |
+
+ name;?>
+ |
name;?> |