感謝的Sandip的幫助下,我成功地解決我的問題!
這裏是視圖:
= f.radio_button :system, "bacteria"
Bacteria
= f.radio_button :system, "mammalian"
Mammalian
= f.radio_button :system, "yeast"
Yeast
= f.radio_button :system, "insect"
Insect
%br/
= f.radio_button :system, nil, id: 'other_system_radio',
checked: radio_checked?('system', f.object.system)
Other:
%input.input-small#other_system_text{ value: text_input?('system', f.object.system) }
我用的輔助功能來管理編輯表格(填寫文本字段,如果值,如果從給定的情況不同):
def radio_checked?(type,val)
case type
when 'system'
['bacteria', 'mammalian', 'yeast', 'insect'].include?(val) ? '' : 'checked'
end
end
def text_input?(type,val)
case type
when 'system'
['bacteria', 'mammalian', 'yeast', 'insect'].include?(val) ? '' : val
end
end
,有點的Javascript來選擇「其他」單選按鈕,當用戶專注於文本字段時:
@handle_other_field = ->
$('#other_system_text').focus(-> $('#other_system_radio').attr('checked','checked'))
$('#other_system_text').keyup(-> $('#other_system_radio').val($(this).val()))