<kendo:dateInput>
A JSP wrapper for Kendo UI DateInput.
Configuration Attributes
format java.lang.String
Specifies the format, which is used to format the value of the DateInput displayed in the input. The format also will be used to parse the input.
Example
<kendo:dateInput format="format">
</kendo:dateInput>
max java.util.Date
Specifies the maximum date which can be entered in the input.
Example
<kendo:dateInput max="max">
</kendo:dateInput>
min java.util.Date
Specifies the minimum date that which be entered in the input.
Example
<kendo:dateInput min="min">
</kendo:dateInput>
value java.util.Date
Specifies the selected date.
Example
<kendo:dateInput value="value">
</kendo:dateInput>
Configuration JSP Tags
kendo:dateInput-messages
The messages that DateInput uses. Use it to customize or localize the placeholders of each date/time part.
More documentation is available at kendo:dateInput-messages.
Example
<kendo:dateInput>
<kendo:dateInput-messages></kendo:dateInput-messages>
</kendo:dateInput>
Event Attributes
change String
Fires when the selected date is changed
For additional information check the change event documentation.
Example
<kendo:dateInput change="handle_change">
</kendo:dateInput>
<script>
function handle_change(e) {
// Code to handle the change event.
}
</script>
Event Tags
kendo:dateInput-change
Fires when the selected date is changed
For additional information check the change event documentation.
Example
<kendo:dateInput>
<kendo:dateInput-change>
<script>
function(e) {
// Code to handle the change event.
}
</script>
</kendo:dateInput-change>
</kendo:dateInput>