To download the elbrus version tool kitNavigate to commerce>Hosting>ssp application.Then check the currently used elbrus version view the file open the application folder Link, open the backup folder.Download the latest backup by checking the last time of manifest file and download the first 3 files as given in the screenshot and save the 3 files… Continue reading How to download the elbrus version tool kit and run local steps.
Author: Rohit Adithiya
How to Trigger JavaScript change event when value is not different
The ‘change’ event listener will only trigger when the value of the input changes, so if the same id is selected, no change would be triggered, and the event will not show. For instance, if you’re creating an AJAX uploader and want to do something with the information in the file input, you could always… Continue reading How to Trigger JavaScript change event when value is not different
How can we pass the data from a parent to a child template.
When you call the child view from your parent view’s .js file, add in the options like this: Then you can access it from the child view’s initialize function in the its’ view.js file like this:
How to use pageinit script context function in the NetSuite.
Using this function in the NetSuite script this will show after the page completes loading or when the form is reset, we can set the values as default after the page reload also in NetSuite.
How to solve the Module not found error due to the newly created extension.
This error will show if i have created extension on my account and shopping, but we need to do changes on my account only then we will get error as module not found in shopping page using this method, we can solve this error in same extension. We can create a new JavaScript and rename… Continue reading How to solve the Module not found error due to the newly created extension.
Passing Quantity and price values from Reorder page to mini cart
Using this method, we can Pass the Quantity and price values from Reorder page to mini cart by extending the view of add to cart button.
How to customize the choose file button in iOS devices
In Ios devices shows the buttons in different UI for choose file input type file by using this method we can customize the choose file buttons.
How to create and display popup using the extension
We have to extend the view of the popup method from the source code to extension and we can display the popup
Creating check upload button and getting image to NetSuite file cabinet
Using extension Suite script 1 how to add check upload button and store the images in NetSuite file cabinet.View file:
How to validate a model and the input provided by user using backbone js
Description It validates the model and input provided by the user. If the input is invalid, it returns a specified error message or if the input is valid, it doesn’t specify anything and simply displays the result.Syntax:model.validate(attributes,options) Parameters:attributes − These attributes define the property of a model.options − It includes true as an option to validate the… Continue reading How to validate a model and the input provided by user using backbone js