0
Create another record from button
Hi, I've creating an form for information on interviews, and I have a button that lets the user add another record for a second interview. The button code is as follows:
let myIN := number(Id);
let NI := (create InterviewLog);
NI.('Candidate Name' := myIN);
popupRecord(record(InterviewLog,number(NI.Id)))
It's not picking up the Candidate Name from the previous record - where have I gone wrong please?
4 replies
-
Sorry - should add, on the first interview log, it picks up the candidate name from the candidate record.
-
Ignore me - I fixed it!
-
How did you fix this... I have a similar need and trying to learn this language
-
This works...
let myIN := this;
let NI := (create InterviewLog);
NI.(Candidate := myIN.Candidate);
popupRecord(record(InterviewLog,number(NI.Id)))
Content aside
- 5 yrs agoLast active
- 4Replies
- 1504Views