DatePicker.html 910 B

12345678910111213141516171819202122232425
  1. <!-- /*
  2. * Licensed Materials - Property of IBM
  3. *
  4. * IBM Cognos Products: SHARE
  5. *
  6. * (C) Copyright IBM Corp. 2015, 2016
  7. *
  8. * US Government Users Restricted Rights - Use, duplication or disclosure
  9. * restricted by GSA ADP Schedule Contract with IBM Corp.
  10. */ -->
  11. <div class="bi_datepicker_div">
  12. {{? it.labelText}}
  13. <div class="bi_datepicker_label">
  14. <label class="bi_datepicker_label" for='bi_datepicker_{{=it.id}}'>{{=it.labelText}}</label>
  15. </div>
  16. {{?}}
  17. <div class='bi_datepicker_input'>
  18. <span class='wft_calendar'> </span>
  19. <input id='bi_datepicker_{{=it.id}}' class="bi_datepicker"
  20. {{? it.ariaLabelText}}aria-label="{{=it.ariaLabelText}}"{{?}}
  21. aria-haspopup="true" aria-describedby="input_instructions_{{=it.id}}"
  22. />
  23. <span id="input_instructions_{{=it.id}}" class="sr-only">{{=it.inputInstructions}}</span>
  24. </div>
  25. </div>