Skip to content
This repository has been archived by the owner on Jan 6, 2018. It is now read-only.

Commit

Permalink
CLOSES OOZIE-18 Option to view Workflow job details from Coordinator …
Browse files Browse the repository at this point in the history
…job detail popup
  • Loading branch information
kirann authored and Mohammad Kamrul Islam committed Aug 18, 2011
1 parent b595e85 commit c16779a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions release-log.txt
@@ -1,5 +1,6 @@
-- Oozie 3.1.0 release

OOZIE-18 Option to view Workflow job details from Coordinator job detail popup
OOZIE-17 Group column for coordinator jobs in Oozie Web Console
OOZIE-11 Adding Distcp Action.
OOZIE-6 Custom filters option and User information column added to Coordinator jobs section of Oozie Web Console
Expand Down
8 changes: 7 additions & 1 deletion webapp/src/main/webapp/oozie-console.js
Expand Up @@ -703,11 +703,17 @@ function coordJobDetailsPopup(response, request) {
bbar: getPagingBar(jobActionStatus),
listeners: {
cellclick: {
fn: showCoordActionContextMenu
fn: showWorkflowPopup
}
}

});
function showWorkflowPopup(thisGrid, rowIndex, cellIndex, e) {
var jobContextMenu = new Ext.menu.Menu('taskContext');
var actionStatus = thisGrid.store.data.items[rowIndex].data;
var workflowId = actionStatus["externalId"];
jobDetailsGridWindow(workflowId);
}
// alert("Coordinator PopUP 4 inside coordDetailsPopup ");
function showCoordActionContextMenu(thisGrid, rowIndex, cellIndex, e) {
var jobContextMenu = new Ext.menu.Menu('taskContext');
Expand Down

0 comments on commit c16779a

Please sign in to comment.