Registering Lifecycle Hooks vue.js

The onMounted hook can be used to run code after the component has finished the initial rendering and created the DOM nodes: vue <script setup> import { onMounted } from ‘vue’ onMounted(() => { console.log(`the component is now mounted.`) }) </script> There are also other hooks which will be called at different stages of the instance’s lifecycle,… Continue reading Registering Lifecycle Hooks vue.js

Advanced Blender Techniques

Blender is a powerful 3D creation software that can be used to create a wide variety of content, from simple models to complex animations. While the basics of Blender can be learned relatively easily, there are also a number of advanced techniques that can be used to create more sophisticated and realistic results. Here are… Continue reading Advanced Blender Techniques

Published
Categorized as Design

The Evolution of Wearable Technology: Designing Functional and Fashionable Devices

Introduction Wearable technology has transitioned from mere gadgets to fashion statements, blending functionality with style. This article traces the evolution of wearable tech and explores the crucial role of design in creating devices that seamlessly integrate into everyday life while making a fashion statement. 1. Historical Evolution of Wearable Technology Wearable tech has evolved from… Continue reading The Evolution of Wearable Technology: Designing Functional and Fashionable Devices

Published
Categorized as Design Tagged

Shopping page Not Scrolling in mobile device

Shopping Page Not Scrolling in Mobile device to overcome this issue we need to extend the shopping page view and add the below code define(‘ProductList.DetailsLater.View.Extension’ , [ ‘ProductList.DetailsLater.View’ , ‘underscore’ , ‘jQuery’ ] , function ( ProductListDetailsLaterView , _ , jQuery ) { ‘use strict’; _.extend(ProductListDetailsLaterView.prototype, { deleteListItemHandler: function (target) { var self = this ,… Continue reading Shopping page Not Scrolling in mobile device

Scheduled Script To Delete Address From Employee Record

The client needs to delete all the addresses in the employee record. We have created a scheduled script to delete them without affecting any other fields. /**  * @NApiVersion 2.1  * @NScriptType MapReduceScript  */ define([‘N/record’, ‘N/search’],     /**  * @param{record} record  * @param{search} search  */     (record, search) => {      … Continue reading Scheduled Script To Delete Address From Employee Record

Create a Custom List using Suitelet

Sample to create a custom list using Suitelet. To create a custom list, we use “serverWidget.createList” and then choose the style of the list which includes the following – Later add the columns to the list using ”list.addColumns”. This includes parameters like – id label type align (Optional) Finally, Add rows using “list.addRows” /** *… Continue reading Create a Custom List using Suitelet

Report to know transactions with Standard Approval not submitted for Approval

SCENARIO: Client wants to know the transactions that are not submitted for approval so that they can reach to employees to submit for approval SOLUTION: Create a Saved Transaction Serach: Once the transaction search page opens: In Criteria provide following details In Results provide following details: Provide a name for the report and click on… Continue reading Report to know transactions with Standard Approval not submitted for Approval