Resolved! Disable Alphabetical Sorting of JSON Attributes in Response from C sharp Service

JSON response received on the client side is generally in alphabetical order. This happens when we don’t add any sort order on our server-side API layers. In one of my project, there was a situation in which I wanted to add columns in Excel file from JSON response, as JSON attributes( In my case colum […]

Resolved! Disable Alphabetical Sorting of JSON Attributes in Response from C sharp Service Read More »

Create and Download XLS Excel From JSON Response Data in Webpage Using Javascript

Viewing formatted data on HTML webpage is a good idea until the user wants to do some quick changes in tabular data like sorting, filtering. So it is better to take it in your own hands instead of making server calls. Today we will convert JSON response data into the Excel file. Excel file will

Create and Download XLS Excel From JSON Response Data in Webpage Using Javascript Read More »

Angular 12 Checkbox List with Parent-Child Expand Collapse Sections

In this post we’ll discuss on How to Create a Checkbox List having parents and children structure, using a single data object. Moreover, each parent is in an expandable accordion tab to be collapsed to hide its child items. The list checkboxes will have a child group and a parent checkbox each. Checking / Unchecking

Angular 12 Checkbox List with Parent-Child Expand Collapse Sections Read More »

Android SQLite Example Application Insert Update Delete Truncate Operations

Android SQLite provides a mean for an application developer to save data locally in device memory in a structured form, which makes it very easy to read, update or delete information saved in multiple formats. Android SQLite is the best way to save data locally in the device itself. SQLite acts as a local database for

Android SQLite Example Application Insert Update Delete Truncate Operations Read More »

Android SQLite Integration

UPDATE: See Complete Application Example Here Part 1: Android SQLite: Integration. Next Part 2: How to Insert New Row in SQLite Database Android SQLite is the best way to save data locally in the device itself. SQLite acts as a local database for applications saving data in tradition columns rows architecture. It is suited where

Android SQLite Integration Read More »