When customer in AU subsidiary place order from the webstore the checkbox “HOLD “in the sales order should be checked this can be achieved by using workflow1. create workflow in NetSuite customization workflow new2. select the Felds as required transaction and in sub tabs sales order 3.context select the webstore, event after the submit, and… Continue reading Using workflow how to Tick the “HOLD “checkbox for the AU subsidiary sales orders placed.
Author: Rohit Adithiya
How to solve the 404 error in indexing for the blog page due to extension.
The http status of the blog page generates a 404 error when the feature extension is activated to the website. The error is because the new view for the feature section has been added to all layouts. var layout = container.getComponent(‘Layout’);layout.addChildView(‘Feature.view’, function() {return new FeatureView({ container: container });}); Since the view is required only for… Continue reading How to solve the 404 error in indexing for the blog page due to extension.
How to change the color to gray for all the previous dates including the disabled dates and highlight the present day in the Customized jQuery date picker.
By importing CSS link, it is possible to change the color to gray for all the previous dates including the disabled days and highlight the present day so the customer will not confuse to select the date.As we are using jQuery date picker we need to add this link in the extension and add the… Continue reading How to change the color to gray for all the previous dates including the disabled dates and highlight the present day in the Customized jQuery date picker.
How to use More and less buttons functionality in the PDP page description
using this script method we can achieve expand and show lesson the description by using more and less buttons under the description.
How to use the pattern attribute, to specify regular expression to input value
The pattern attribute, when specified is a regular expression which the input value must match the value of pass constraint validation it must be a valid JavaScript regular expression as used by the reg exp type.The pattern attribute specifies a regular expression form control’s value should match. If a non-null value doesn’t conform to the constraints set by the pattern value,… Continue reading How to use the pattern attribute, to specify regular expression to input value
How to display the date field using bootstrap and jQuery and display in the IOS devices with disabled functionality for date field.
using bootstrap and jQuery we can display in the IOS devices with disabled functionality for date field by using normal date picker. in the html type date will not work for the IOs device using this method we can display for the IOS devices also.
without extending in the entry file how to display the item description from the view file.
without using the extend method we can create a data view and using the data view from the view files we can display the item description by using this method. We will get the matrix parent and child item details using the code given below initialize: function (options) {var self = this;this.options = optionsthis.pdp =… Continue reading without extending in the entry file how to display the item description from the view file.
How to Create ship to date field in the checkout payment page and disable the date for previous dates.
Created the shipping date field and added the date picker. And disabled three days from the date they are ordering and also the previous dates (as we cannot have it ready by then). By using the following code in the extension.
How to get the data specification pdf link from item record and show it under the download subtab in the PDP page
we can achieve this by get the field value from item record and then need to display it in the pdp page by using this method we can display the it in pdp page.
How to create the new page without using the SMT and router in the extension
we can achieve this by adding the following code in the extension.