Hi Steve,
Just a quick one. I would need to do some field validation in my tables and I was looking here --> http://xataface.com/documentation/tutor ... validation. My request is a bit different
I have two DATE_TIME fields in one of my tables:START_DATE_TIME,END_DATE_TIME which the user types in, when keying in the form.
However, I need more control over the date they can type, such that:
START_DATE_TIME --> Cannot be earlier than current system date/time and will popup "Change cannot be earlier than today" if they try to type in early date and will not save the record.
Also,
END_DATE_TIME =--> Cannot be earlier than the START_DATE_TIME field and will popup "End Date/Time cannot be earlier than start time" and will not save the record if this is the case.
*I figured it will be a combination of delegate classes and before save and after save techniques, since in the case of the END_DATE_TIME validation, it won't know the value of START_DATE_TIME until AFTER this fields has been evaluated first.
* Would appreciate if you could just direct me to a working example or some code snippets to get this to work.
thanks Steve