Show Button if object has not been saved

0
I have a _NewEdit page in a popup where I would like to add a delete button. I would not like the delete button to show if the object has not been saved to the database, so that the delete button only shows for existing objects, not for new ones. If I target one of the actual attributes displayed on the page the delete button becomes visible as soon as I fill it out. Is the best approach to target one of the system attributes such as createdDate?
asked
1 answers
3

Hi Russell,

You can use below expression to achieve this;

not(isNew($currentObject))

 

Hope this helps!

answered