Class: HHiddenInputTag

Inherits:
HWidget show all
Defined in:
lib/hwidgets/hhiddeninputtag.rb

Instance Attribute Summary

Attributes inherited from HWidget

#tag

Instance Method Summary collapse

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