tree

tree() Instance Public methods

new

new(*args) Class Public methods

dup

dup() Instance Public methods Returns an exact copy of the ActionController::Parameters instance. permitted state is kept on the duped object. params = ActionController::Parameters.new(a: 1) params.permit! params.permitted? # => true copy_params = params.dup # => {"a"=>1} copy_params.permitted? # => true

xview_moveto

xview_moveto(*index) Instance Public methods

checkbox

checkbox(name = "", value = nil, checked = nil) Instance Public methods Generate a Checkbox Input element as a string. The attributes of the element can be specified as three arguments, name, value, and checked. checked is a boolean value; if true, the CHECKED attribute will be included in the element. Alternatively, the attributes can be specified as a hash. checkbox("name") # = checkbox("NAME" => "name") checkbox("name", "value") # = checkbox("NAME" => "name", "VALUE"

transformNode

transformNode(arg0) Instance Public methods BSTR transformNode apply the stylesheet to the subtree IXMLDOMNode arg0 --- stylesheet [IN]

default_inspect

default_inspect() Instance Public methods Alias for: inspect

wm_iconify

wm_iconify(ex = true) Instance Public methods Alias for: iconify

to_a

hsh.to_a â array Instance Public methods Converts hsh to a nested array of [ key, value ] arrays. h = { "c" => 300, "a" => 100, "d" => 400, "c" => 300 } h.to_a #=> [["c", 300], ["a", 100], ["d", 400]]

process_action

process_action(*args) Instance Public methods Override AbstractController::Base's #process_action to run the #process_action callbacks around the normal behavior.