mirror of
				https://github.com/xcat2/xcat-core.git
				synced 2025-10-31 11:22:27 +00:00 
			
		
		
		
	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
This commit is contained in:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user