Is it possible to get the Id of the current contour record?
I have another control on the same page as a Contour form and need to grab a reference to the record Id of the form the user is completing - is this possible?
Is it a single page form or a multi page form? On initial page load there won't be a record id available since the record is created on the first submit (so first next click on multipage).
For multipage forms the record id will be stored in a cookie , you can get the key of the cookie with
Get the Id of the current record
Is it possible to get the Id of the current contour record?
I have another control on the same page as a Contour form and need to grab a reference to the record Id of the form the user is completing - is this possible?
Thanks, Simon
Comment author was deleted
Hey Simon,
Is it a single page form or a multi page form? On initial page load there won't be a record id available since the record is created on the first submit (so first next click on multipage).
For multipage forms the record id will be stored in a cookie , you can get the key of the cookie with
RecordService.GetCookieReference(form);
is working on a reply...