Re: Databinding with RadioBlock into Repeatable

2013-08-27 Thread sophpc
The 'name' attribute must be unique for each radioBlock. A solution that worked for me (in a different case, such as in JENKINS-5028 https://issues.jenkins-ci.org/browse/JENKINS-5028 ) was to add a unique generated string to the name attribute. In my case I concatenated ${instance.hashCode()} to

Re: Databinding with RadioBlock into Repeatable

2013-08-27 Thread sophpc
Sorry, but your solution breaks the radio block. All the buttons in a block must have the same name in order to be grouped into a single selection. Since /generateId()/ creates a unique id for each radio button, you just get multiple radio blocks (each containing a single button) -- View this