Hello,
I work on the offline PDF incident and I would like to hide a button if the PDF is already filled. The problem is the PDF is saved in the incident as an attachment and the user can open the attachment and send the PDF again.
I tried to hide the button if a mandatory field is filled in the initialize method but it does not worked. Does someone knows how to do it?
if ( data.Sect.Reporter.Name.FIRST_NAME.rawValue !=null )
{
data.Footer.send.presence = "hidden";
}
else
{
data.Footer.send.presence = "visible";
}
Thank you
Marie-Josée