Hello,

I have a config.jelly which includes a main jelly file and also some 
additional (repeatable) jelly files from an other class. The 
config-main.jelly has a textbox with the field "enteredValue". Now I'd like 
to use the value, entered in this textbox in the "templates" config.jelly.

This is in the parent config.jelly:
...
<st:include page="config-main.jelly" class="${descriptor.clazz}" />

<f:entry title="${%Some templates}">
    <f:repeatable field="templates">
      <st:include page="config.jelly" class="${descriptor.clazz}" />
    </f:repeatable>
</f:entry>...

This is in the config-main.jelly:
...
<f:entry title="${%Some value}" field="enteredValue">
  <f:textbox />
</f:entry>
...


This is something I want to do in the "templates" config.jelly:
...
<j:set var="aVariable" value="${enteredValue}" />
...

Is there an easy way to do something like that?

Thank you.

-- 
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/e42c8bb1-2337-4e13-9f64-dd382e081ad5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to