Guest User

Untitled

a guest
Jan 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <label for="email">Project Name</label>
  2. <select name='project_name' class='required input_field' id='project_name'>
  3. <option value=''>-- Select --</option>
  4. <c:forEach var="row" items="${result.rows}">
  5. <option value="${row.ProjectId}">${row.ProjectName}</option>
  6. </c:forEach>
  7. </select>
  8.  
  9. <label for="author">Client Name</label>
  10. <input type='text' name='client_name' id='client_name' class='required input_field' style='width:260px;'>
  11.  
  12. this.form['client_name'].value = this[this.selectedIndex].innerText
Add Comment
Please, Sign In to add comment