Footer

In FancyForm there is special element for data information
It is footer.
In it, you can inform about data status(some note) and data source info.

Example


footer: {
  status: '<span style="position: relative;top: 3px;">*</span> - Only PC, without LCV, LBC',
  source: {
    text: "European Automobile Manufacturers' Association",
    link: 'acea.be'
  }
},

Params

source

object

Data source info.


{
  text: "European Automobile Manufacturers' Association",
  link: 'acea.be'
}

status

String

Data status.


{
  status: '<span style="position: relative;top: 3px;">*</span> - Only PC, without LCV, LBC'
}
`