From 33c99770338427a08d96f5df9a6b233361a5428f Mon Sep 17 00:00:00 2001 From: hyunsook Date: Tue, 22 Oct 2013 09:55:43 +0900 Subject: [PATCH] Checkboxradio: Fixed a bug of sample code for "Field containers" in Radio buttons. --- entries/checkboxradio.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/entries/checkboxradio.xml b/entries/checkboxradio.xml index 7cc9332e..1f4b389f 100644 --- a/entries/checkboxradio.xml +++ b/entries/checkboxradio.xml @@ -118,16 +118,16 @@ <div class="ui-field-contain"> <fieldset data-role="controlgroup"> <legend>Choose a pet:</legend> - <input type="radio" name="radio-choice-2" id="radio-choice-21" value="choice-1" checked="checked" /> + <input type="radio" name="radio-choice-2" id="radio-choice-1" value="choice-1" checked="checked" /> <label for="radio-choice-1">Cat</label> - <input type="radio" name="radio-choice-2" id="radio-choice-22" value="choice-2" /> + <input type="radio" name="radio-choice-2" id="radio-choice-2" value="choice-2" /> <label for="radio-choice-2">Dog</label> - <input type="radio" name="radio-choice-2" id="radio-choice-23" value="choice-3" /> + <input type="radio" name="radio-choice-2" id="radio-choice-3" value="choice-3" /> <label for="radio-choice-3">Hamster</label> - <input type="radio" name="radio-choice-2" id="radio-choice-24" value="choice-4" /> + <input type="radio" name="radio-choice-2" id="radio-choice-4" value="choice-4" /> <label for="radio-choice-4">Lizard</label> </fieldset> </div>