xpay-ftb-widget-js v1.6.5
Installation:
XPay Widget - used to popup the payment gateway at the current page itself.
Use this script tag to get access to the widget.
<script src="https://cdn.jsdelivr.net/npm/xpay-ftb-widget-js@1.6.5/dist/index.min.js"></script>
Implementation:
Steps:-
Create or open an html file.
Add a button with the id
paynow. It is used to call the xpay by on click event.
<button id="paynow">paynow</button>- Add a div tag with the id
xpay-ftb-web-widgetat the last or beginning of the body tag. It is used to display the xpay module with the help of this id.
<div id="xpay-ftb-web-widget"></div>- Add a Script tag to the head tag or body tag. And use the latest version.
<script src="https://cdn.jsdelivr.net/npm/xpay-ftb-widget-js@1.6.5/dist/index.min.js"></script>- Next, add the script tag at a necessary place. But add below the widget script.
<script>
const config = {
baseurl: string,
showPopup: boolean,
delayTime: number,
maximumFractionDigits: number,
sessionid: string,
paymenttokenid: string,
merchantName: string,
onResponse: function (data) {},
onError: function (data) {},
onPopupClose: function (data) {}
};
var container = document.getElementById('paynow');
container.addEventListener('click', function () {
xpay.XpayWidget(config);
});
</script>Here, the config variable is used to pass the data. And the container variable is to get the dom element of the id paynow button and added to the event listener. It checks if the button is clicked and sends the config object data to the xpay.
xpay.XpayWidget(config)
Note:-
baseurlshould pass as a string value. It is used as the base URL for API calls.showPopupis used to pass a boolean value (trueorfalse). To toggle the xpay popup.delayTimeshould pass a number as seconds to close the popup.maximumFractionDigitsshould pass a number for digits to display amount not compulsory.sessionidandpaymenttokenidshould pass as a string value. It is used all over the xpay.merchantNameis used to display the merchant name at xpay. And pass it as a string value.onResponseis a callback function. It is getting called when the API gives a successful response. Return data is an object with its API endpoint and result.onErroris a callback function. It is getting called when the API gives an error message. Return data is an object with its API endpoint and result.onPopupCloseis a callback function. It is getting called when the popup gets closed or session gets expired. Return data is an object with its action and result.
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago