Class: HHiddenInputTag
- Defined in:
- lib/hwidgets/hhiddeninputtag.rb
Instance Attribute Summary
Attributes inherited from HWidget
Instance Method Summary collapse
-
#initialize(name = "", value = nil) ⇒ HHiddenInputTag
constructor
A new instance of HHiddenInputTag.
Methods inherited from HWidget
#_addJsSlot, #_set, #_setStyle, #addJsFunction, #appendChild, #appendChilds, #buildSignature, #closeTag, #connect, #copyConstructor, #get, #getChilds, #getElementBy, #getSystemProperty, #hotLog, #html, #openTag, #replacePlaceholder, #reset, #set, #setChilds, #setCloseTag, #setClosedTag, #setEnablePlaceholder, #setInnerHTML, #setParent, #setPlaceholder, #setPlaceholders, #setProperties, #setSlots, #setStyle, #setStyles, #setSystemProperties, #setSystemProperty, #setTag, #storeSlots, #storeStyle, #strProperties, test, #unset, widgetSpace
Constructor Details
#initialize(name = "", value = nil) ⇒ HHiddenInputTag
Returns a new instance of HHiddenInputTag.
7 8 9 10 |
# File 'lib/hwidgets/hhiddeninputtag.rb', line 7 def initialize(name = "", value = nil) super("input", type: "hidden", name: name, value: value) self.setClosedTag(false) end |