With this option, main menu items display in distinctive colors. Dropdown menus descend in a smooth animation.
Month: July 2023
Using Jquery parse jason in blocks universally
In jQuery, to parse any data to any block is carried over by using DOM Insertion methods. Some of DOM Insertion methods are append(), appendTo(), html(), prepend(), prependTo(), text(). To parse JSON into any block is also handled in same way but along with Ajax callback functions and parse.JSON() methods. Here parse.JSON() methods is deprecated… Continue reading Using Jquery parse jason in blocks universally
how to get all child records of a customer using suitescript
If the user wants to get all the child records of a Customer via script then we can use this method. Using SuiteScript 1.0:
Order Quantity
We can set the min and max quantity for an order. The user can buy only the quantity in between them. To set a minimum or maximum quantity limit for an item: Go to Lists > Accounting > Items. Click Edit next to the item for which you want to restrict the quantity for sale. On the Sales/Pricing subtab, use… Continue reading Order Quantity
How to resolve theme developer tools override causing error in activation
If we copy a template (.tpl) or Sass (.scss) file from the Modules directory of the published extension to a theme Overrides directory, customize the new file, and then deploy and activate that theme, we may receive this error: Templates Job Error: Could not find overriding file This issue occurs because the theme developer tools… Continue reading How to resolve theme developer tools override causing error in activation
Disable Quantity Pricing
We can configure SuiteCommerce or SuiteCommerce Advanced (SCA) to disable the Quantity Pricing feature. After you disable Quantity Pricing, quantity pricing data will not appear on your website. To disable the Quantity Pricing feature in NetSuite: Go to Setup > Company > Enable Features. Go to the Transactions tab. In the Sales area, clear the Quantity Pricing box to… Continue reading Disable Quantity Pricing
Order Status-Standard extension
The Order Status extension lets you display billing and shipping information of a purchase order to customers on your website. After providing an order number and email address or Zip Code, both guests and registered customers can view the following: Order fulfillment progress Payment summary Shipping details, including tracking numbers Pickup in store details, including… Continue reading Order Status-Standard extension
How to resolve theme developer tools override causing error in activation
If we copy a template (.tpl) or Sass (.scss) file from the Modules directory of the published extension to a theme Overrides directory, customize the new file, and then deploy and activate that theme, we may receive this error: Templates Job Error: Could not find overriding file This issue occurs because the theme developer tools… Continue reading How to resolve theme developer tools override causing error in activation
In the javaScript how to change the object property in an array of objects
Here we can understand how we may modify an object’s property in an array of objects in JavaScript using an example that contains a valid as well as justified approach.
Function is to convert a given input date (in various formats) into a standardized date format of “MM/DD/YYYY” (month/day/year).
The function ‘formatDate’ does this by creating a new Date object from the input date and then extracting the month, day, and year components to build the final formatted date string.