From d83ddb7f691b8e26c39cedaa32d9aa2705f2e2c3 Mon Sep 17 00:00:00 2001 From: phamt Date: Thu, 21 Mar 2013 18:36:20 +0000 Subject: [PATCH] Fixed eventlog tab on xCAT UI to use a textarea instead of input box for log options. git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/branches/2.8@15620 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-UI/js/custom/zvm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-UI/js/custom/zvm.js b/xCAT-UI/js/custom/zvm.js index 8ceae3a1d..740ac9b78 100644 --- a/xCAT-UI/js/custom/zvm.js +++ b/xCAT-UI/js/custom/zvm.js @@ -2574,7 +2574,7 @@ zvmPlugin.prototype.loadLogPage = function(node) { setChkBox.append('Set options'); // Create log options input - var logOpt = $('
  • '); + var logOpt = $('
  • '); logOpt.hide(); optsList.append(logOpt); @@ -2654,7 +2654,7 @@ zvmPlugin.prototype.loadLogPage = function(node) { // If it is set options if (opt == 'o') { // Append options - optStr += ';' + $('#' + newTabId + ' input[name=logOpt]').val(); + optStr += ';' + $('#' + newTabId + ' textarea[name=logOpt]').val(); } // Append ; to end of string