Class: AlHidden

Inherits:
AlText show all
Defined in:
lib/al_form.rb

Overview

ヒドゥンテキストウィジェット

Instance Attribute Summary

Attributes inherited from AlText

#max, #min, #validator

Attributes inherited from AlWidget

#filter, #foreign, #hidden, #label, #message, #name, #required, #tag_attr, #tag_type, #value

Instance Method Summary collapse

Methods inherited from AlText

#set_value, #validate

Methods inherited from AlWidget

#make_tag, #make_value, #set_attr, #set_value

Constructor Details

#initialize(name, arg = {}) ⇒ AlHidden

(AlHidden) constructor

Parameters:

  • name (String)

    ウィジェット識別名 英文字を推奨

  • arg (Hash) (defaults to: {})

    引数ハッシュ

See Also:



823
824
825
826
# File 'lib/al_form.rb', line 823

def initialize( name, arg = {} )
  super( name, arg )
  @hidden = true
end