Asynchronous Apex
Asynchronous Apex in Salesforce allows developers to execute operations in a separate thread, enabling tasks to run in the background without impacting the user experience. This approach is particularly beneficial for handling long-running processes, callouts to external systems, and operations
Showing Deletion Confirmation box in Laravel datatables
Showing Deletion Confirmation box in Laravel datatables Datatables are the finest way to show the larger number of records to the user on a single page as it provides so many features like sorting, pagination, etc. Sometimes we need to
Implementing Column Search to filter Devextreme Data Grid content
Implementing Column Search to filter Devextreme Data Grid content Devextreme datagrid provides various capabilities to operate over the set of data. One of the attractive features is searching and filtration inside data grid to view the required set of data
Custom column in WooCommerce subscription list
Adding a custom column in WooCommerce subscription list and search data according to its content using code There are two ways to add a custom column in the WooCommerce lists i.e. either we can add them using the WordPress plugins
How can you modify the existing tables in Moodle/Totara?
How can you modify the existing tables of the installed plugin in Moodle/Totara? When you install any plugin, install.xml is used to create all the tables required for your plugin. A most common practice that people use to do is
Deploy the laravel project on 1&1 production server
How to deploy the laravel project on Shared hosting server On shared Environment: Step 1: Push the code to Production Server. I’m assuming that your project is running perfectly on your localhost and now you are ready to push it
Google Authenticator not working along with ssh-key and password
Problem: Google Authenticator not working along with ssh-key and password First of all, login to Ubuntu machine where you want google-authenticator to be used along with ssh keys and password. Step.1 Install google PAM PAM stands for Pluggable Authentication Modules
Captivate Content – Scroll not working in landscape mode on iPhone
Problem: Scroll was not working in the landscape mode for iPhone and iPad in adobe captivate In our project, we faced one problem the scrollbar in adobe captivate content was not working on the landscape mode of iPhone and iPad.
Download files from S3 disk in Laravel
how to download file from s3 disk in Laravel What is AWS S3? Amazon Simple Storage Service (Amazon S3) is an object storage service that offers industry-leading scalability, data availability, security, and performance. S3 helps you securely upload and download
Bundle in ASP.NET MVC
Bundle in ASP.NET MVC Bundling is a process that allows us to load a bunch of static files from the server into one HTTP request. We can load multiple CSS and Javascript files using bundles. Let’s take an example :