class Dill::TextField

A text field.

Public Instance Methods

content?() click to toggle source
# File lib/dill/widgets/text_field.rb, line 23
def content?
  get.respond_to?(:empty?) ? ! get.empty? : !! get
end
to_cell() click to toggle source
# File lib/dill/widgets/text_field.rb, line 19
def to_cell
  get
end