alform:altime
AlTime 時刻入力
時刻入力ボックスです。
コンストラクタ
AlTime.new("名前", オプション)
オプション
- label - ラベル
- value - 初期値
- required - 必須入力フラグ
- filter - 入力フィルタ
- tag_type - htmlタグ生成時のtype文字列
- tag_attr - htmlタグ生成時の追加アトリビュート
- min - 最小
- max - 最大
- value_format - 表示フォーマット "%H:%M:%S" 等
使用例
初期値指定
AlTime.new("time1", :value=>Time.now) make_tag()出力 <input type="text" name="time1" id="time1" value="(現在時刻)">
必須入力フラグ
AlTime.new("time1", :required=>true )
htmlタグ生成時のtype文字列
AlTime.new("time1", :tag_type=>"time") make_tag()出力 <input type="time" name="time1" id="time1" value="">
最小最大
AlTime.new("time1", :min=>"9:00:00", :max=>"17:00:00")
alform/altime.txt · 最終更新: 2022/03/22 11:06 by hirohito