After Browse
Posted: Fri Sep 12, 2025 3:09 pm
On a Lookup object I use after browse to set the following Form Values
all of these work apart from the 2nd one. date_in always remains blank. The date_in object is type input nuDate and the format is dd-mm-yy in mysql the field is type Date showing 2025-08-19. The LookUpRecord stk_date_in object is type input nuDate and the format is dd-mm-yy in mysql the field type is Date showing 2025-08-19.
Is there something with nuDate that means I can't use this in After Browse?
Thank you.
Code: Select all
nuSetFormValue('reg_no', nuLookUpRecord()->stk_reg_no);
nuSetFormValue('date_in', nuLookUpRecord()->stk_date_in);
nuSetFormValue('time_in', nuLookUpRecord()->stk_time_in);
nuSetFormValue('vehicle_type', nuLookUpRecord()->stk_vehicle_type);
nuSetFormValue('customer', nuLookUpRecord()->stk_customer);
nuSetFormValue('company', nuLookUpRecord()->stK_company);
nuSetFormvalue('vehicleinin_id', nuLookUpRecord()->vehicleinid_id);
Is there something with nuDate that means I can't use this in After Browse?
Thank you.