How to remove the blue highlight of button on mobile?

When trying to create buttons, links or input fields using latest development technologies like next js, react and angular etc there might be some times a default background color may appear. This can cause bugs for the developed website since they create a different background color different from the mockup. As solution we can use… Continue reading How to remove the blue highlight of button on mobile?

Continuous Deployment (CI/CD) testing

Continuous Deployment (CI/CD) testing is the practice of continuously testing software throughout the development process to ensure that it is ready for deployment. It is an essential part of the CI/CD pipeline, which aims to automate the build, test, and deployment of software. CI/CD testing involves running automated tests on every code change or new… Continue reading Continuous Deployment (CI/CD) testing

Control Flow Software Testing

Control flow testing is a type of software testing that uses program’s control flow as a model. Control flow testing is a structural testing strategy. This testing technique comes under white box testing. For the type of control flow testing, all the structure, design, code and implementation of the software should be known to the testing team.… Continue reading Control Flow Software Testing

Types of animations

There are several A, each with its own unique characteristics, techniques, and applications. Here are some of the main types of animations: Traditional (2D) Animation: Traditional animation involves creating a series of hand-drawn or digitally generated frames that are played in sequence to create the illusion of motion.This type of animation can vary in style… Continue reading Types of animations

Published
Categorized as Design

Automatically Selecting Multiselect Field Values in NetSuite

This script demonstrates how to automatically select multiple values in a multi-select field using SuiteScript 2.0 in NetSuite. // Defining an array of values to be selected in the multi-select fieldvar strArrayValue = [“A”, “B”, “C”];// Loading the Record in dynamic mode var Rec = record.load({ type: “”, id: , isDynamic: true }); // Setting… Continue reading Automatically Selecting Multiselect Field Values in NetSuite