チェックボックス用ウィジェトです。
AlCheckboxes.new("名前", オプション)
オプション
AlCheckboxes.new("check1", :options=>{c1:"CHOICE1", c2:"CHOICE2", c3:"CHOICE3"}, :value=>[:c1,:c2]) make_tag()出力 <label><input type="checkbox" name="check1" id="check1_c1" value="c1" checked>CHOICE1</label> <label><input type="checkbox" name="check1" id="check1_c2" value="c2" checked>CHOICE2</label> <label><input type="checkbox" name="check1" id="check1_c3" value="c3">CHOICE3</label>
AlCheckboxes.new("check1", :options=>{c1:"CHOICE1", c2:"CHOICE2", c3:"CHOICE3"}, :required=>true)
AlCheckboxes.new("check1", :options=>{c1:"CHOICE1", c2:"CHOICE2", c3:"CHOICE3"}, :separator=>"<br>") make_tag()出力 <label><input type="checkbox" name="check1" id="check1_c1" value="c1">CHOICE1</label><br> <label><input type="checkbox" name="check1" id="check1_c2" value="c2">CHOICE2</label><br> <label><input type="checkbox" name="check1" id="check1_c3" value="c3">CHOICE3</label><br>
AlCheckboxes.new("check1", ..., :min=>1, :max=>3) # 1つ以上、3つ以下がb選ばれること