Why is this State Management Solution Named Zustand? “Zustand” is a German word that translates to “state” in English. In the context of programming and software development, “Zustand” is often used in conjunction with “Zustands management,” which translates to “state management.” It refers to the management of the state of an application, typically to keep […]
Posts Tagged ‘JavaScript’
Coveo Headless Library Integration with SAPUI5 Framework: Development Environment Setup – Phase I
In this blog, we will explore how to integrate Coveo Headless, a powerful search and relevance platform, with OpenUI5, a popular UI framework for building web applications. As search functionality becomes increasingly crucial for modern applications, this integration will allow us to create an advanced search experience within OpenUI5 projects. Introduction Coveo Headless is a […]
Perficient’s Bright Paths Program Brings Ingenuity and Community to the Forefront
Earlier this year, Perficient expanded its Bright Paths Program to introduce two national coding bootcamps open to students across the United States. The Bright Paths Program advances STEM education and career opportunities for underrepresented constituencies and communities to help close the gap in the technology industry. The first national cohort kickstarted in April, and students […]
Boosting React Performance: Essential Optimization Techniques
In today’s fast-paced world, users demand lightning-fast experiences from web applications. As a React developer, optimizing the performance of your application is much needed to ensure a smooth and responsive user interface. In this article, we will explore some essential performance optimization techniques and habits in React, which will help you to create highly efficient […]
Salesforce Lightning Components: Building Custom UI Elements
Introduction In the world of Salesforce development, user interface (UI) plays a vital role in creating a seamless and intuitive experience for users. While the Salesforce platform provides a rich set of pre-built UI components, there are times when you may need to create custom UI elements to meet specific business requirements. That’s where Salesforce […]
Acquiring Knowledge and Expertise in Asynchronous JavaScript
One of the most Widely Used Languages in the world right now is JavaScript. Only one thing can be done at once because it is a Single-Threaded Language. Prior to the addition of asynchronous JavaScript, which makes use of Promises and async/await, this was a limitation. We’ll discover how to use asynchronous JavaScript more efficiently […]
Introduction to Tailwind CSS
What is Tailwind CSS? Tailwind is a utility CSS library that allows developers to use the styling properties within the HTML file. It is done by labeling the class name as styling properties. Instead of defining the class name such as Navbar, and Footer, developers can define the classes as styling properties. Such as display […]
Custom JavaScript Sitecore Fields
Introduction Custom fields are a powerful tool for extending functionality and improving ease of use. This article will explore creating, organizing, and implementing custom JavaScript Sitecore fields with an iframe. By using an iframe to load a separate HTML document, you can cleanly contain all of the necessary CSS, JavaScript, and HTML files. We’ll walk […]
Retrieval of different datatypes with formContext Data Objects on Model driven (Dynamics 365) Forms
This article is dedicated to retrieving different data values available on Dataverse tables using client-side scripts such as JavaScript. This technic would be very helpful to extend model-driven form out-of-box functionality to meet the real-time business requirement, such as implementing complex business rules validations, making form fields hide/show, manipulating datatypes values, and many more. Now […]
Katalon – Custom Keyword For JavaScript Executioner
In Katalon, users can set additional keywords to increase the functionality of Katalon Studio in addition to the built-in keywords. Like other built-in keywords, custom keywords can be used in test cases once developed. Users can expand keywords and reuse them across projects thanks to this capability. Assume that you want to execute the JavaScript […]
Remote validation in ASP.NET MVC without using jQuery
In this blog, we will implement remote validation by making an ajax call to the server without using jQuery; we will achieve this using vanilla JavaScript. What is the purpose of remote validation? Here’s an explanation: Often, user inputs must be checked against a database to see if it already exists. We need to validate […]
Client-side scripting with Formcontext UI Object on Model Driven App (Dynamics 365 )
This article will look at the implementation of client side scripts on Microsoft Dynamics 365 using a model-driven approach, which provides additional benefits on the UI level and allows us to easily access Form UI properties such as tabs, sections, fields and access, security role, complex validations and so on. So, here in Dynamics 365, […]