Browse Source

[oozie] IE support of dashboard buttons

Romain Rigaux 13 years ago
parent
commit
2631b71

+ 3 - 4
apps/oozie/src/oozie/templates/dashboard/list_oozie_coordinators.mako

@@ -88,7 +88,7 @@ ${layout.menubar(section='dashboard')}
                 data-confirmation-message="${ _('Are you sure you\'d like to kill this job?') }"
                 data-url="${ url('oozie:manage_oozie_jobs', job_id=job.id, action='kill') }">
                   ${ _('Kill') }
-              </button>
+              </a>
            </td>
           </tr>
         %endfor
@@ -189,8 +189,8 @@ ${layout.menubar(section='dashboard')}
 
 
     $("#filterInput").keyup(function() {
-        runningTable.fnFilter($(this).val());
-        completedTable.fnFilter($(this).val());
+        runningTable.fnDraw();
+        completedTable.fnDraw();
 
         hash = "#";
 
@@ -215,7 +215,6 @@ ${layout.menubar(section='dashboard')}
 
     $.fn.dataTableExt.afnFiltering.push(
       function(oSettings, aData, iDataIndex) {
-
         urlHashes = ""
 
         statusBtn = $('a.btn-status.active');

+ 2 - 2
apps/oozie/src/oozie/templates/dashboard/list_oozie_workflows.mako

@@ -189,8 +189,8 @@ ${ layout.menubar(section='dashboard') }
 
 
     $("#filterInput").keyup(function() {
-        runningTable.fnFilter($(this).val());
-        completedTable.fnFilter($(this).val());
+        runningTable.fnDraw();
+        completedTable.fnDraw();
 
         hash = "#";
 

+ 8 - 8
apps/oozie/src/oozie/templates/editor/gen/workflow-graph.xml.mako

@@ -44,13 +44,13 @@
 
 
 <%def name="display_graph(form, print_node)">
-    <div class="row action2" style="min-height:400px">
-        ${ print_graph(nodes, print_node) }
-    </div>
+  <div class="row action2" style="min-height:400px">
+    ${ print_graph(nodes, print_node) }
+  </div>
 
-    <style>
-      .action2 {text-align: center; }
-      .action {border-style:solid; border-width:1px; border-color:LightGrey; padding: 3px; margin:25px;}
-      .action-link:hover {cursor: pointer; cursor: hand};
-    </style>
+  <style>
+    .action2 {text-align: center;}
+    .action {border-style:solid; border-width:1px; border-color:LightGrey; padding: 3px; margin:25px;}
+    .action-link:hover {cursor: pointer;}
+  </style>
 </%def>