Using workflow how to Tick the “HOLD “checkbox for the AU subsidiary sales orders placed.

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.

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 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

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.