NodeJS

Creating Multiple SharePoint List Items Using SharePoint REST API

When managing data in SharePoint lists, there are times when we need to create multiple list items in one go. Doing this efficiently can save time and improve performance, especially when working with large datasets. Here, we’ll explore how to use the SharePoint REST API to create multiple list items at once, leveraging the power …

Creating Multiple SharePoint List Items Using SharePoint REST API Read More »

Handling International Date Functionalities in JavaScript

When developing applications that serve users around the world, managing dates and times across various time zones, cultures, and formats becomes essential. JavaScript offers powerful libraries and built-in functionalities for handling dates globally, including features for parsing, formatting, and displaying dates based on users’ locales. Lets dive into: 1. JavaScript’s Date Object Basics JavaScript’s built-in …

Handling International Date Functionalities in JavaScript Read More »

Store and Display Dates Properly in JavaScript

Storing and displaying dates in JavaScript can be a bit tricky, especially with different formats, time zones, and localization needs. Here’s a step-by-step guide on how to store and display dates properly. Storing Dates Store as UTC: Displaying Dates To display dates, you’ll often need to convert them to a local time zone and format …

Store and Display Dates Properly in JavaScript Read More »

How to hide Buttons from SharePoint List or Libraries using JSON in OOTB Format view

Overview SharePoint is a versatile platform that empowers organizations to collaborate, manage documents, and streamline workflows effectively. However, out-of-the-box SharePoint interfaces may contain buttons or actions that aren’t always necessary or relevant to every user or scenario. In such cases, customizing the user interface to hide certain buttons can greatly enhance usability, security, and compliance …

How to hide Buttons from SharePoint List or Libraries using JSON in OOTB Format view Read More »

TypeScript: What, Why and How?!

Overview TypeScript has emerged as a powerful tool for building robust and scalable web applications. Developed by Microsoft, TypeScript is a superset of JavaScript that adds static typing and other features to the language. In this blog, we’ll explore TypeScript, its key features, and practical implementations. What is TypeScript? TypeScript is an open-source programming language …

TypeScript: What, Why and How?! Read More »

Custom Tabs: Hillbilly Tabs in Modern SharePoint

Overview “Hillbilly Tabs” is a popular term used in SharePoint development, particularly in the context of customizing SharePoint pages with tabs or tabbed interfaces using JavaScript/jQuery. The term “hillbilly” in this context doesn’t refer to any specific technology or tool but rather a style or approach to implementing customizations in SharePoint. Developers often use JavaScript …

Custom Tabs: Hillbilly Tabs in Modern SharePoint Read More »

Start your SharePoint with SPFX

Overview SharePoint Framework (SPFx) is a development framework provided by Microsoft for customizing and extending SharePoint Online and SharePoint on-premises. It allows developers to build client-side web parts, extensions, and other customizations using modern web technologies such as TypeScript, React, and more. Here are the key aspects of SharePoint development with SPFx: To start customizing …

Start your SharePoint with SPFX Read More »

What is NodeJs. How to Install NodeJs

What is NodeJS? Node.js is an open-source, server-side JavaScript runtime environment built on Chrome’s V8 JavaScript engine. It allows you to run JavaScript code on the server, outside of a web browser, enabling you to build scalable and high-performance network applications. Traditionally, JavaScript was primarily used for client-side scripting in web browsers. However, Node.js extends …

What is NodeJs. How to Install NodeJs Read More »