Submit buttons are not in fields, they are added as an input element to an
entire form. Where is that Field definition -- in a table definition or
SQLFORM.factory? Anyway, SQLFORM takes a 'submit_button' argument, which is
the text for the submit button.
Anthony
On Thursday, December 1, 2011 3:57:30 PM UTC-5, Rick wrote:
>
> Hi,
> How to change the text on the submit button in fields? Here'sthe code:
>
> Field('thedate', 'date', label=T(''),
> widget=SQLFORM.widgets.date.widget))
>
> I tried with this, but i didn't work:
> Field('thedate', 'date', label=T(''),
> submit=INPUT(_type='submit'('Some text')),
> widget=SQLFORM.widgets.date.widget))
>
> Thanks in advance for help!
>
>