ユーザ用ツール

サイト用ツール


alform:altimestamp

AlTimestamp 日時入力

日時入力ボックスです。

コンストラクタ

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

オプション

  • label - ラベル
  • value - 初期値
  • required - 必須入力フラグ
  • filter - 入力フィルタ
  • tag_type - htmlタグ生成時のtype文字列
  • tag_attr - htmlタグ生成時の追加アトリビュート
  • min - 最小
  • max - 最大
  • value_format - 表示フォーマット "%Y/%m/%d %H:%M:%S" 等

使用例

初期値指定
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)
alform/altimestamp.txt · 最終更新: 2022/03/22 11:05 by hirohito