If our NetSuite account has more than one currency needed, then we have to enable the multi-currency feature. Once the feature is enabled, we can create new currency records. To create a new currency record, Go to Lists > Accounting > Currencies > New. In the Name field, enter a unique name for the currency. … Continue reading Currency record Creation
Month: December 2023
Difference Between tsx and jsx in React
.js is JavaScript, plain and simple. .ts is Typescript , Microsoft’s way of adding “concrete” types to JavaScript .jsx is JavaScript but with JSX enabled which is React’s language extension to allow you to write markup directly in code which is then compiled to plain JavaScript with the JSX replaced with direct API calls to React.createElement or whatever API is targeted .tsx is similar… Continue reading Difference Between tsx and jsx in React
How to use Tailwind CSS in your Vue.js project
Install required dependencies and add config files To use Tailwind CSS, we need the framework itself, PostCSS, and Autoprefixer. The thing is that Vue.js uses an older PostCSS version (7) at the moment, so we have to install the compatible packages for Tailwind CSS which by default uses the latest 8 version. We can install them by… Continue reading How to use Tailwind CSS in your Vue.js project
Brand filter option on the PLP page
In website setup added the facet field. Brand field added there as shown below image. In configuration added the brand facet. In facets subtab added the brand field ID , name, priority, behvior etc. In plp brand filter came
key features of useEffect hook in React component
Purpose: useEffect is a React hook used for handling side effects in functional components. Side effects can include data fetching, subscriptions, DOM manipulations, and more.1 Functionality: It allows performing operations after the component renders or when certain dependencies change. Syntax: It takes two arguments: a function and an optional dependency array. Function Argument: Contains the… Continue reading key features of useEffect hook in React component
TestingBot
TestingBot is a cloud-based platform designed for automated testing of web and mobile applications. TestingBot primarily focuses on cross-browser and cross-platform testing, allowing users to run tests on a variety of browsers and devices to ensure compatibility and functionality. It is the primary cloud-based tool for web and mobile applications. With the help of this… Continue reading TestingBot
Return Authorizations Page Is Not Available for Custom Role
If the Return Authorizations page is not available for Custom Role ,we can follow the below steps Login in as an Administrator Navigate to Setup > User/Roles > Manage Roles Custom Role: Click Edit Click Permissions Click Transactions Permission: Select Return Authorization Click Save
Configure token refresh in HTTP connection
Refresh token can be set up by giving the following Refresh token (required): Enter a token that can serve as a refresh expired auth token. You can place this token in the body, headers or URL simply by referencing it with the handlebars placeholder {{connection.http.auth.token.refreshToken}}. Multiple layers of protection, including AES 256 encryption, are in place to… Continue reading Configure token refresh in HTTP connection
How to add review rate from netsuite
Update the review section of LHS of the PLP page of the pure care website as per the given design. In review section the list added in the menu will be based on the value in the item record product review field. As many values in the field that much list will be added in… Continue reading How to add review rate from netsuite
Differences between GUI Testing and Usability Testing
GUI testing and usability testing are two distinct aspects of software testing that focus on different aspects of a software application. Here are the key differences between GUI testing and usability testing: Focus: GUI Testing:GUI (Graphical User Interface) testing primarily focuses on validating that the graphical elements of the user interface, such as buttons, menus,… Continue reading Differences between GUI Testing and Usability Testing