Jesse Kuhnert (JIRA) a écrit :
[
https://issues.apache.org/jira/browse/TAPESTRY-1663?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Jesse Kuhnert resolved TAPESTRY-1663.
-------------------------------------
Resolution: Fixed
Fix Version/s: 4.1.3
Assignee: Jesse Kuhnert
Fixed in dojo - should work on radio groups now. Not sure how you want to
decorate a radio group on client side but I probably need to update that as
well at some point.
Thanks Jesse for your work. You're so fast ;-)
I'll make some tries some days, when I'll get the 4.2.3 version. For now
I'm only using 4.1.2.
cheers
cyrille
@RadioGroup client-side validation does not work
------------------------------------------------
Key: TAPESTRY-1663
URL: https://issues.apache.org/jira/browse/TAPESTRY-1663
Project: Tapestry
Issue Type: Bug
Components: JavaScript
Affects Versions: 4.1.2
Environment: Firefox 2.0.0.5 and InternetExplorer 7.0.5730
Reporter: Cyrille
Assignee: Jesse Kuhnert
Fix For: 4.1.3
The @RadioGroup client-side validation does not work: nothing append at form
submit. Notive that it works fine on server-side.
The Template part :
<div jwcid="[EMAIL PROTECTED]" selected="ognl:radioGroup01Selected" displayName="RadioGroup
01" validators="validators:required" >
choix 1<input type="text" jwcid="[EMAIL PROTECTED]" value="literal:R01" />
<br/>
choix 2<input type="radio" jwcid="[EMAIL PROTECTED]" value="literal:R02" />
</div>
The generated html :
...
<div>
choix 1<input type="radio" name="radioGroup01" id="radioGroup010" value="0" /><br/>
choix 2<input type="radio" name="radioGroup01" id="radioGroup011" value="1" />
</div>
...
<script type="text/javascript"><!--
dojo.addOnLoad(function(e) {
dojo.require("tapestry.form");tapestry.form.registerForm("theForm");
tapestry.form.focusField('text01');
tapestry.form.clearProfiles('theForm');
tapestry.form.registerProfile('theForm',{"required":["text01","radioGroup01"],"text01":{"required":["Vous devez
entrer une valeur pour Le Text 01."]},"radioGroup01":{"required":["Vous devez entrer une valeur pour RadioGroup 01."]}});});
// --></script></body>
</html>
I had a try with a "required" @TextField on the same page, and the client-side
works fine for the field, there is only the RadioGroup client-side validation which does
not works.
I think about that, but I a beginner, so it's juste a idea : the javascript
validation probably works only with element id, but in case of radios in a
radiogroup only the name attribute is the same for all radios.
Ask me for more detail if needed.
Cheers
Cyrille
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]