Advertisement
Guest User

Untitled

a guest
Oct 24th, 2014
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. <div class="form-element">
  2. <label>New status (required)</label>
  3. <select id="comNewStatus" runat="server" datavaluefield="id" datatextfield="name" class="nFee"></select>
  4. </div>
  5.  
  6. <div class="form-element">
  7. <label>Offered salary (numeric only!!)</label>
  8. <input type="text" id="txtOfferedSalary" class="txtOfferedSalary" runat="server" data-bind="value:offeredSalary, valueUpdate: 'afterkeydown'" />
  9. </div>
  10.  
  11. <div class="form-element">
  12. <label>Final salary (numeric only!!)</label>
  13. <input type="text" id="txtFinalSalary" class="txtFinalSalary" runat="server" data-bind="value:finalSalary, valueUpdate: 'afterkeydown'" />
  14. </div>
  15.  
  16.  
  17. <div class="form-element">
  18. <label>Paid introduction fee (numeric only!!)</label>
  19. <input type="text" id="txtFinalIntroductionFee" class="txtFinalIntroductionFee" runat="server" data-bind="value: introductionFee, valueUpdate: 'afterkeydown'" />
  20. </div>
  21.  
  22. <div class="form-element">
  23. <label>
  24. Start date (required if job offered, format: DD-MMM-YYYY)
  25. </label>
  26. <div class="input-append">
  27. <span class="add-on "><span class="icon-calendar"></span></span>
  28. <input class="dp" size="16" type="text" value="" runat="server" id="txtStartDate" />
  29. </div>
  30. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement