API Endpoints

Decimals

Specific configuration parameters

πŸ“˜

Hide elements value

  • Beware that for now, values are somehow inverted.
  • in order to display the element you set true, in order to hide, you set the value false.
ParameterDescription
hideElements.decimalsAllows you to show or hide the decimals in OrderDetails component.
default: "false"
options: "false: || "true"
decimalsLengthAllows to define the number of decimals to show
default: "2"

Usage Example

Consider the following examples:

Hiding Decimals Component Order Details

<!DOCTYPE html> <head> <title>LSW v3 Embed</title> </head> <body> <div id="instaleap-lsw-v3"></div> </body> <script src="https://xandar-lsw-v3.instaleap.io/lib/lsw.js"></script> <script> const params = { job: "myJob", token: "myToken", container: "#instaleap-lsw-v3", hideElements: { decimals: true }, } window.instaleap.lsw.render(params) </script> </html>

Setting 3 decimals to show

<!DOCTYPE html> <head> <title>LSW v3 Embed</title> </head> <body> <div id="instaleap-lsw-v3"></div> </body> <script src="https://xandar-lsw-v3.instaleap.io/lib/lsw.js"></script> <script> const params = { job: "myJob", token: "myToken", container: "#instaleap-lsw-v3", decimalsLength: "2", } window.instaleap.lsw.render(params) </script> </html>