Advertisement
Guest User

Untitled

a guest
Jun 14th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <select class="form-control select optional" ui-jp="select2" ui-options="{theme: 'bootstrap'}"name="pos_product[product_name]" id="pos_product_name" tabindex="-1" style="width:100%" onchange="">
  2.         <option value="">Sélectioner un produit</option>
  3.         <% for (j=0; j<products.pos_products.length; j++) {%>
  4.                 <option value="<%= products.pos_products[j].name %>" data-name="<%= products.pos_products[j].name %>">
  5.                     <%= products.pos_products[j].name %>
  6.                 </option>
  7.         <% } %>
  8. </select>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement