We can update the custom radio button value to corresponding the select field when we selecting the radio button by using the select field id.
Tag: online case form
How to convert case type Select tag to radio button in online case form using javascript.
We can convert ‘Case Type’ select tag to radio button in online case form by using javascript.
How to use placeholder option in online case form.
We can set the placeholder for fields in online case form by script. Template:
How to create Custom case form in NetSuite and how to fetch fields in template
We can create Custom case form and also fetch custom case form values to template. Step 1: Setup -> Support -> Online Case Forms -> New . Step 2: Select the ‘Cutsom HTML Template’ from the list. Step 3: In ‘Cutsom HTML Template’ window, here we can set the Title and update the required fields… Continue reading How to create Custom case form in NetSuite and how to fetch fields in template
Case Form template using bootstrap and HTML5
This is a sample case form template created using bootstrap and HTML5
Online Case form Template using Bootstrap and validation using DOM
Solution <!DOCTYPE html><Head><meta charset=”utf-8″><Title>Revo Online Case Form</Title><meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <link href=”https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css” rel=”stylesheet”><link rel=”stylesheet” href=”https://fonts.googleapis.com/css?family=Work Sans” type=”text/css”><style>input[type=”text”]{width:67%;font-size:14px;display:block;}.control-label{font-size:13px;display:block;} select { display block;font-size:14px; width:70%;}.btn{font-size:14px;padding:8px;margin-bottom:100px;}textarea{width:67%;height:32px;display:block;font-size:22px;}option { font-size: 14px; font-weight: normal; line-height: 0px;}body{letter-spacing:.07em;font-family:Work Sans;}</style><script type=”text/javascript”>if(performance.getEntriesByType(“navigation”)[0].type == “back_forward”){ location.reload();}function getData(){var title=document.getElementById(‘title’).value;var fname=document.getElementById(‘firstname’).value;var lname=document.getElementById(‘lastname’).value;var email=document.getElementById(’email’).value;var adrs=document.getElementById(‘address1’).value;var state=document.getElementById(‘state’).value;var city=document.getElementById(‘city’).value;var item=document.getElementById(‘custevent_jj_prdt_num_brl_57’).value;var ctgry=document.getElementById(‘category’).value;var msg=document.getElementById(‘incomingmessage’).value;var year=document.getElementById(‘custevent_jj_year_brl_43’).value;var zip=document.getElementById(‘zipcode’).value;var d = new Date(); var n = d.getFullYear();var… Continue reading Online Case form Template using Bootstrap and validation using DOM