NetTalk Central

NetTalk Web Server => Web Server - Ask For Help => Topic started by: broche on October 02, 2017, 01:50:35 AM

Title: How To - Select a field based on validation?
Post by: broche 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.
Title: Re: How To - Select a field based on validation?
Post by: Rene Simons 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
Title: Re: How To - Select a field based on validation?
Post by: broche on October 02, 2017, 04:56:34 AM
Thanks Rene