submit

submit(value = nil, name = nil) Instance Public methods Generate a submit button Input element, as a String. value is the text to display on the button. name is the name of the input. Alternatively, the attributes can be specified as a hash. submit # <INPUT TYPE="submit"> submit("ok") # <INPUT TYPE="submit" VALUE="ok"> submit("ok", "button1") # <INPUT TYPE="submit" VALUE="ok" NAME="button1"> submit("VALUE" => "ok", "NAME" => "button1", "ID" => "

reset_column_information

reset_column_information() Instance Public methods Resets all the cached information about columns, which will cause them to be reloaded on the next request. The most common usage pattern for this method is probably in a migration, when just after creating a table you want to populate it with some default values, eg: class CreateJobLevels < ActiveRecord::Migration def up create_table :job_levels do |t| t.integer :id t.string :name t.timestamps end

quoted_primary_key

quoted_primary_key() Instance Public methods Returns a quoted version of the primary key name, used to construct SQL statements.

cloneNode

cloneNode(arg0) Instance Public methods IXMLDOMNode cloneNode BOOL arg0 --- deep [IN]

peek_tk

peek_tk() Instance Public methods Peek at the next token, but don't remove it from the stream

postscript_cget_strict

postscript_cget_strict(option) Instance Public methods

panes

panes() Instance Public methods

style

style(*args) Class Public methods

match

match(element, first?) => array or nil Instance Public methods Matches an element against the selector. For a simple selector this method returns an array with the element if the element matches, nil otherwise. For a complex selector (sibling and descendant) this method returns an array with all matching elements, nil if no match is found. Use +first_only=true+ if you are only interested in the first element. For example: if selector.match(element) puts "Element is a login fo

to_a

to_a() Instance Public methods Returns the elements of the vector in an array.