Skip to content

Commit

Permalink
node filtering now actually works
Browse files Browse the repository at this point in the history
  • Loading branch information
techthumb committed Sep 27, 2011
1 parent 136ffbf commit a09e53b
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -12,6 +12,7 @@
<div class="pageBody form">
<g:form controller="scheduledExecution" method="post">
<g:render template="editOptions" model="${[scheduledExecution:scheduledExecution, selectedoptsmap:selectedoptsmap, selectedargstring:selectedargstring,authorized:authorized,jobexecOptionErrors:jobexecOptionErrors]}"/>
<input name="extra._replaceNodeFilters" value="true" type="hidden"/>

<g:if test="${nodesetvariables }">
<div class="message note">
Expand All @@ -28,7 +29,7 @@
<div class="presentation">
<g:each var="node" in="${nodes}">
<p>
<input id="${node.nodename}" type="checkbox" name="nodes" value="${node.nodename}" checked="true"/>
<input id="${node.nodename}" type="checkbox" name="extra.nodeIncludeName" value="${node.nodename}" checked="true"/>
<label for="${node.nodename}">${node.nodename}</label>
</p>
</g:each>
Expand Down

0 comments on commit a09e53b

Please sign in to comment.