by Nayeem Iqubal | Sep 30, 2021 | Data, Programming & Development, Technology
DocuSign is an online platform where people can send a document to others for signature electronically. Sometimes our application needs to know the status of a document (Envelope Status) and based on that we may want to do something in our integration. DocuSign...
by Nayeem Iqubal | Mar 22, 2021 | Programming & Development
DocuSign is a well known platform where users can send their document for signing via email or your app. I will try to show you how DocuSign authorize an user and how can we send a document to users for signing electronically and we will do that programmatically. To...
by Nayeem Iqubal | Mar 19, 2021 | Programming & Development
In a frontend Application we sometimes need to send some message or notify other components to update UI based on some data. We can achieve this using Event Aggregator in Aurelia. I will try to show you how it works. We need to use Dependency Injection here. This is a...
by Nayeem Iqubal | Mar 18, 2021 | Programming & Development
Custom elements are useful when we have large page content and we need to break the pages into small pieces of components which can be reusable in the other pages also. To create a custom element we just need to create a view template and optionally a view model for...
by Nayeem Iqubal | Mar 17, 2021 | Programming & Development
Routing is necessary for users to navigate through the whole web site. To make SPA project routing in frontend is must. Configure aurelia router in a aurelia project is pretty easy. First Create a fresh project using aurelia-cli. Check out this post how to do that. To...