# File lib/ramaze/contrib/sequel/form_field.rb, line 12
  def initialize(this, field, show_errors = true, hint = nil)
    @this, @field, @show_errors, @hint =
      this, field.to_sym, show_errors, hint
    @db_type = db_type
    @id = "form_#{@field}"
    @value = this.send(@field)
  end