I'm not looking for "dynamic" as in realtime changes, page-load is fine. 
Enablement is based on installation/use of other plugins. Here's what I've 
got together now as a workaround: 


      <f:entry title="${e.id}">
        <j:choose>
          <j:when test="${e.disabledText != null}">
            <label tooltip="${%Not applicable}: ${e.disabledText}">
              <input type="checkbox" disabled="disabled"/>
              ${e.description}
            </label>
          </j:when>
          <j:otherwise>
            <f:checkbox title="${e.description}" name="exclusions" 
default="${instance.exclusions.contains(e.id)}"
                        json="${e.id}"/>
          </j:otherwise>
        </j:choose>
      </f:entry>


-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/ab5af7fc-e3fd-4355-81e9-ae4f29a7ab54%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to