Though dashboards differ, they all have the same conceptual goal and purpose, consolidating information for a specific objective. In an increasingly data-driven world, the ability to summarize and display data while making it easy to understand and actionable is more important than ever. Dashboards appear in all types of software with various approaches behind their… Continue reading 5 Dashboard Design Best Practices
Month: June 2024
Top 5 Cutting-Edge JavaScript Techniques
From monads to pattern matching, we walk you through the latest and greatest JavaScript techniques for advanced developers. JavaScript is an essential tool in the world of modern web development and continues to change and evolve to set new standards. In this article, we focus on five cutting-edge JavaScript techniques to show developers new and… Continue reading Top 5 Cutting-Edge JavaScript Techniques
7 Best Chart Libraries For Developers In 2024 🤯
Many applications use charts or graphs for data visualization, which can be implemented using libraries or underlying technologies. Libraries offer time efficiency, a variety of chart types, and customization options. As a developer, understanding these options is crucial. While some projects might choose manual implementation, many benefit from the efficiency of chart libraries. Using these… Continue reading 7 Best Chart Libraries For Developers In 2024 🤯
Phone get replaced due to google Ads feature
The phone numbers on the website are appearing as different numbers that change frequently. These new numbers, when dialed, still connect to the client. I checked the issue with the phone number swapping and found that the phone number displayed in the header is static and set by the theme. On the domain, there is… Continue reading Phone get replaced due to google Ads feature
Error Handling without the Result Class
Purposefully throwing errors can have several negative side effects to the readability and traceability of your code. In this article, we take a look at an alternative to how to handle errors within your Node.js + TypeScript applications. Do you ever find yourself wondering where exactly you should throw an error to be consumed by… Continue reading Error Handling without the Result Class
Enable the Review and place order buttton in quote page
To enable the ‘Review and Place Order’ button, we need to properly configure the entity status ID in the ‘PURCHASE READY STATUS ID’ field. This field must match the internal ID of the customer’s status required for the customer to be able to make a purchase from the quote. The ID of the status ‘SolutionProvider’,… Continue reading Enable the Review and place order buttton in quote page
Dashboard Customization
Scenario: We need to create a html page and display it in the dashboard. Solution: Create the html page. Upload the html page into the file cabinet. Create Portlet script. Include the html page url as iframe in the portlet.(script given below) Personalize dashboard->custom portlet->select the portlet script. Portlet script: /** * @NApiVersion 2.1 *… Continue reading Dashboard Customization
ECMAScript 2024 features you can use now
ECMAScript 2024 is expected to be finalized in June, but four new JavaScript features are already supported in browsers and Node.js. Here’s how to start using them today. The ECMAScript specification is like a portrait of the JavaScript language that is repainted every year. As is typical of modern JavaScript, the spec and real-world practice move… Continue reading ECMAScript 2024 features you can use now
5 ways to use JavaScript promises
Developers use JavaScript promises to model asynchronous operations in web and server-side programs. Here’s a quick look at five ways to use promises in your code. Promises are a central mechanism for handling asynchronous code in JavaScript. You will find them in many JavaScript libraries and frameworks, where they’re used to manage the results of an… Continue reading 5 ways to use JavaScript promises
SUITE SCRIPT TO CHANGE IMAGE NAME BY USER EVENT
This script is used to change the image name in the file cabinet after saving it in the format that is item name and the last 4 digits od series and the numbers /** * @NApiVersion 2.1 * @NScriptType UserEventScript */ define([‘N/record’, ‘N/file’, ‘N/log’, ‘N/search’], /** * @param {record} record * @param {file} file *… Continue reading SUITE SCRIPT TO CHANGE IMAGE NAME BY USER EVENT