Requirement: Show the pdf file attached in the customer record to the website We are getting only the id of the file from javaScript. To get the url, we have to load the file using suiteScript. When we use suitescript to load file, there may be a chance of permission issue to access the document.… Continue reading Resolve error : You need a higher level of the ‘Lists -> Documents and Files’ permission to load the file using suitecript
Author: Shekha E K
Individual Transform Property
A good way to give the website some animations or transitions is to use the transform property in CSS. The problem is if we want to change just one of the transform properties later on, we must write the whole definition again for all properties. Example: .childBlock1:hover { transform: translateX(0%) rotate(0deg) scale(0.9); } @media… Continue reading Individual Transform Property
How to set default status to sales order
NetSuite offers a standard feature to set the order status. Go to setup -> accounting-> accounting preference Under the order management, we can set the order status as pending approval or pending fulfillment.
Solve “Youtube refuse to connect” while using youtube link in iframe code
Sometimes, when we use the youtube link directly in iframe code, the video will not load and shows error like youtube refuse to connect. Solution: YouTube doesn’t allow 3rd parties to embed their site directly like that. The easiest way to get the correct link is to right-click on the YouTube video and select copy embed code.
Flex-box and properties
The Flexbox Layout (Flexible Box) module aims at providing a more efficient way to lay out, align and distribute space among items in a container, even when their size is unknown and/or dynamic (thus the word “flex”). The main idea behind the flex layout is to give the container the ability to alter its items’ width/height (and… Continue reading Flex-box and properties
Set font color for select option placeholder
To directly address the option font color, we can set the color on the select element to the light grey, then set all the option font colors except the first to black. This way, the first option inherits the light grey, and shows as such while the select is both open and closed.
How to add red asterisk sign to placeholder
Scenario: How to add a red asterisk sign to the placeholder. Solution: html: css: javaScript
Resolve Error When Uninstalling Bundle
Scenario: User is getting unexpected error when uninstalling a bundle they created. This may be caused by the Server SuiteScript Feature being disabled. Solution: Navigate to Setup > Company > Enable Features Click SuiteCloud Server SuiteScript: Enter Checkmark Click Save
Display item options using custom record – Proposal
Requirement: On the website, we do not have the matrix item feature. Instead, we maintain a single item record, with all its variants established as distinct custom records and linked to the item within the custom tab. Based on the item option selected in the item record, we need to display the item options table… Continue reading Display item options using custom record – Proposal
How to add a new section for showing the profile name only in the top of the my account overview section
Scenario:Add the name of the customer logged in the below marked section in the myaccount overview page. Solution: We can either use extension or SMT.The simplest method will be using SMT.We can create a SMT area in the my account overview home page and this section will only appears in this page. We can get… Continue reading How to add a new section for showing the profile name only in the top of the my account overview section