NetTalk Central

Author Topic: How To - Select a field based on validation?  (Read 3883 times)

broche

  • Sr. Member
  • ****
  • Posts: 336
    • View Profile
    • Email
How To - Select a field based on validation?
« on: October 02, 2017, 01:50:35 AM »
Hi All,

What is the nettalk equivalent of the Clarion Select(?FieldName)
Have two date fields and want to make sure that the end date is greater then the start date and select the start date if not.

Thanks.
Brian

Rene Simons

  • Hero Member
  • *****
  • Posts: 650
    • View Profile
Re: How To - Select a field based on validation?
« Reply #1 on: October 02, 2017, 02:26:31 AM »
Hi,

I think it is a matter of

LOC:Alert   = 'Your error message'
LOC:invalid = 'Equate name of your field'

When you use select(?Fieldname), ?FieldName is also the equate of your FieldName.

Most of the times this is equal to your field name except when you use the same field multiple times in the same form .

Rene
Rene Simons
NT14.14

broche

  • Sr. Member
  • ****
  • Posts: 336
    • View Profile
    • Email
Re: How To - Select a field based on validation?
« Reply #2 on: October 02, 2017, 04:56:34 AM »
Thanks Rene
Brian