Function Signature
|
Description
|
Example
|
||||
---|---|---|---|---|---|---|
LOGO()
|
When used as the svmx-data attribute
value in img element, this shows the company
logo. The logo file must have been
uploaded to a Salesforce document with
the name and unique name LOGO (casesensitive)
and keywords 'SFM_OUTPUT_
DOCUMENT'.
|
<img alt="" src="" style="width: 25%;
height: 50px;" svmx-data="{{$F.LOGO
()}}" />
|
||||
SIGNATURE
(unique_
name, button_
label
[,is_mandatory
[,width_in_
px[,height_
in_px]]])
|
Displays a button with the button_label in mobile apps, clicking which enables signature capture. If the value of the parameter is_mandatory is true, the document cannot be finalized as a PDF without a signature.In the Web app, a hyperlink "Click here to sign" is displayed, clicking which enables signature capture. In Online, PDF can be generated without mandatory signature based on the value of the group setting SET001 - Generate Output Documents without mandatory signatures online (Module: SFM Output Documents; SubModule: Delivery Engine).
Default values for the optional parameters width and height are 350px and 186px, respectively.
|
{{$F.SIGNATURE('CustSign,''Customer
Signature', true,'200','100')}}
|