12345678910111213141516171819202122232425 |
- <!-- /*
- * Licensed Materials - Property of IBM
- *
- * IBM Cognos Products: SHARE
- *
- * (C) Copyright IBM Corp. 2015, 2016
- *
- * US Government Users Restricted Rights - Use, duplication or disclosure
- * restricted by GSA ADP Schedule Contract with IBM Corp.
- */ -->
- <div class="bi_datepicker_div">
- {{? it.labelText}}
- <div class="bi_datepicker_label">
- <label class="bi_datepicker_label" for='bi_datepicker_{{=it.id}}'>{{=it.labelText}}</label>
- </div>
- {{?}}
- <div class='bi_datepicker_input'>
- <span class='wft_calendar'> </span>
- <input id='bi_datepicker_{{=it.id}}' class="bi_datepicker"
- {{? it.ariaLabelText}}aria-label="{{=it.ariaLabelText}}"{{?}}
- aria-haspopup="true" aria-describedby="input_instructions_{{=it.id}}"
- />
- <span id="input_instructions_{{=it.id}}" class="sr-only">{{=it.inputInstructions}}</span>
- </div>
- </div>
|