目次

AlButton 汎用ボタン

汎用ボタン用ウィジェトです。

コンストラクタ

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

オプション

使用例

初期値指定
AlButton.new("button1", :value=>"ABC")

make_tag()出力
<input type="button" name="button1" id="button1" value="ABC">
htmlタグ生成時の追加アトリビュート
AlButton.new("button1", :tag_attr=>{style:"width: 100px;"})

make_tag()出力
<input type="button" name="button1" id="button1" value="button1" style="width: 100px;">