Javascript code to stop the touch movement when a Field is selected in an HTML form

This code can be used to pause the touch movement in mobile devices while entering an input to a field or you can use in canvas field for signature etc. Code snippet: //Additional code in the javascript view file events: { ‘touchstart #in-modal-sig-canvas’: ‘preventCanvasScroll’ }, preventCanvasScroll: function(event){ event.preventDefault(); }, //Additional code in the javascript view… Continue reading Javascript code to stop the touch movement when a Field is selected in an HTML form

How to link Online Custom Record Forms to Website

To link to an online custom form from your NetSuite website: Click the Setup tab. On the Setup page, under the Customization heading, click Record Types.The Custom Record Types list opens. In the Edit column, click the name of the record type you want to edit. Click the Online Forms subtab. Click the name of the form you want to link to.… Continue reading How to link Online Custom Record Forms to Website

Integrating Google recaptcha V2 to an HTML form

Sign up and get your keys here: https://www.google.com/recaptcha/admin (you will get a SITE key and a SECRET key, used later) The following instructions are for integrating recaptcha v2, there is another version also recaptcha V3. While sign up, need to mention the domains and mail id using for this purpose. The recaptcha will only work on the… Continue reading Integrating Google recaptcha V2 to an HTML form

Custom Record Online HTML Form

Requirement The case records will have the details of the customer, home address and email, and other information. The organization would like to have a customer survey solution so that the business can send customer survey emails to customers from the case record. Solution The proposed solution will place a button in the case records… Continue reading Custom Record Online HTML Form