目次

AlTimestamp 日時入力

日時入力ボックスです。

コンストラクタ

AlTimestamp.new("名前", オプション)

オプション

使用例

初期値指定
AlTimestamp.new("timestamp1", :value=>Time.now)
make_tag()出力
<input type="text" name="timestamp1" id="timestamp1" value="(現在日時)">
必須入力フラグ
AlTimestamp.new("timestamp1", :required=>true )
htmlタグ生成時のtype文字列
AlTimestamp.new("timestamp1", :tag_type=>"datetime-local")
make_tag()出力
<input type="datetime-local" name="timestamp1" id="timestamp1" value="">
最小最大
AlTimestamp.new("timestamp1", :min=>Time.new(2000,1,1), :max=>Time.now)