Hi

Somebody know how determine, when working with a record in a Freedom UI page if it corresponds to a new record (new/copy)?

Thanks in advance

Regards

Julio Falcón

Like 0

Like

7 comments

Hello Julio,

const cardState = await request.$context.CardState;
if (cardState == "add" || cardState == "copy") {
     // do something here
}

Ryan

Show all comments (6)