Scenario: When we add a video to the webpage using video tags, iOS devices will not show the thumbnail of the video as they do on Android and desktops. We can use this solution to correct this issue. we need to add a skip time as 0.001s to load the thumbnail image in the source attribute… Continue reading Video thumbnail are not visible in IOS devices
Month: December 2023
Items are not listing in Sales order
While creating a Sales order, some of the items are not listed in the line-level item list. In most cases, this issue happens when the item is made inactive. If the item is active and still the item is not listed in the sales order, check for the accounts given under the accounting tab. If… Continue reading Items are not listing in Sales order
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
What is 3D Rigging for Animation?
What is rigging in 3D? 3D rigging is a process in which you set up assets so they can be animated. Rigs can be made up of a variety of things, from simple controllers, blend shapes, and deformers to full joint skeleton rigs. Regardless the setup, a rig is a chain of object relationships. Rigging… Continue reading What is 3D Rigging for Animation?
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
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
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