Category: Web Development
What is TypeScript, its advantages and some examples
What is TypeScript? TypeScript is a strict syntactical superset of JavaScript and adds optional static typing to the Javascript language.It is pure object oriented with classes, interfaces and statically typed like C# or Java. It is designed for the development
WordPress Custom Post Type
WordPress Custom Post Type In WordPress every single content is generally called a post, even post is also a post type in wordpress. There are many predefined post types like post, page, attachment and many more. We can also create
WordPress Gravity Forms Zoho Reports Integration
WordPress Gravity Forms Zoho Reports Integration Sometimes in our projects, we need to pass the gravity form entries from a WordPress website to a particular table in the Zoho reports in order to use that data to generate reports, create
Integrate Razorpay in CakePHP application
Integrate Razorpay in CakePHP application Step 1: Create Razor Pay Account First of all you need a test account for Razorpay integration. Click the below link https://dashboard.razorpay.com/#/access/signup and set up a test account there: Step 2: Get your API Keys:
How to use Bootstrap pagination
How to use Bootstrap pagination Steps to use Bootstrap pagination: 1. Create a simple html file. 2. Include bootstrap css and js CDN link in html file. Example : <!doctype html> <html lang=”en”> <head> <!– Required meta tags –> <meta
Some important features in Laravel Framework
Some important features in Laravel Framework 1. Artisan: Artisan is a command-line interface tool which is provided by laravel. By using this tool, users can create database structure. It is also used for creating the MVC files right away which
Drag and Drop in Jquery UI
Drag and Drop in Jquery UI Problem: Jquery UI provides APIs to make DOM elements draggable and droppable. We can do some things out of the box by using its APIs. I have written a Jquery code below in which
Allow the Cross Origin Request (CORS)
Cross Origin issue is resolved by adding header(“Access-Control-Allow-Origin: http://yoursite.com”); to allow the particular origin or we can also allow all the origin by replacing the path to *. For Cake php header is defined in file public/index.php. Code: header(“Access-Control-Allow-Origin: http://yoursite.com”);
Creating a Lightning Custom Page/App
We can access different features of Salesforce on a single page by building a custom Lightning App: 1. Multiple features of salesforce on one page 2. Custom homepage 3. Edit layout of objects like adding tabs, flows, hierarchy etc. Steps
