0

我们有以下单选按钮,它们将选定的单选按钮传递给我们方法中的参数“type”

    <input type="radio" name="type" value="a">
        Selection 1
    <input type="radio" name="type" value="b">
        Selection 2
    <input type="radio" name="type" value="c">
        Selection 3

我没有的是,如果不同的字段验证失败(因此没有输入登录名),那么这是唯一被清除的小部件....我所有其他字段都正确保存数据,因为它们具有 value=" ${参数名称}"

如何让单选按钮也以这种方式工作?

谢谢,院长

4

1 回答 1

0

我使用 formfield 而不是 playframeworks 'field' 标签,因为我的有错误修复

基本上,这就是我想出的(不是最漂亮的,但它有效)......

#{formfield 'type'}
<input type="radio" name="type" value="a" #{if field.value=='a'}checked="checked"#{/if}>
    Selection 1
<input type="radio" name="type" value="b" #{if field.value=='b'}checked="checked"#{/if}>
    Selection 2
<input type="radio" name="type" value="c" #{if field.value=='c'}checked="checked"#{/if}>
    Selection 3
#{/formfield}
于 2013-11-18T14:44:56.787 回答