Form.text_field formatting?

If I use form.text_field :date for the form, can I format the :date
somehow, say change the time display format?

Tks

Dmitry H. wrote:

If I use form.text_field :date for the form, can I format the :date
somehow, say change the time display format?

Tks

Hi Hazin,


def nice_date(date)
date.strftime("%A %d %B %Y - %H%l:%M %p")
end


form.text_field nice_date(:date)

Maybe this method might help you.

Regards,

  • Janeve