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/trunk@15620 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd
This commit is contained in:
phamt 2013-03-21 18:36:20 +00:00
parent 3ceb5fe7e4
commit 0575001ef2

View File

@ -2574,7 +2574,7 @@ zvmPlugin.prototype.loadLogPage = function(node) {
setChkBox.append('Set options');
// Create log options input
var logOpt = $('<li><label>Log options:</label><input type="text" name="logOpt"/></li>');
var logOpt = $('<li><label style="width: 80px; vertical-align: top;">Log options:</label><textarea name="logOpt"></textarea></li>');
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