Use a {@link TimeframeCalendarPanel} or the following CSS to hide the labels and show the two {@link DateTextField}s:
/* Hide the date range labels. */
@see ContinuousCalendarOptions Options for the calendar
@author Paul Bors (Paul@Bors.ws)
.continuousCalendarContainer div.label span.clickable {
display: none; visibility: hidden;
}
/* Show the From and To date range text fields. See the *.properties.xml for localization keys. */
.continuousCalendarContainer input.endDate, .continuousCalendarContainer input.startDate {
display: inline;
}
|
|