another problem with 4.29 (maybe) I can not validate a dropdown when the form is submitted.
I have a hand-filled dropdown with the first item as 'Select a Datatype' value=''
I want to validate DataType and not allow the form to complete if the Datatype is ''
I have this code -
ValidateRecord Routine
! Start of "On Insert & Update : Form ends : before disk write"
! [Priority 5000]
! End of "On Insert & Update : Form ends : before disk write"
p_web.DeleteSessionValue('Transfer_ChainTo')
! tab = 1
loc:InvalidTab = 0
! formfield = DataType
! formfield = L_FileName
! Start of "On Insert & Update : Form ends : before disk write"
! [Priority 4000]
If DataType = ''
loc:Invalid = 'DataType'
exit
End
! End of "On Insert & Update : Form ends : before disk write"
This is killing me. I'd appreciate ANY kind of response.
Chris c