I want my users only to be able to select entire days, not certain hours and minutes. Is there an input type that does this?
Hi @sillingworth,
You can create css which will hide other time range options:
just add css file in <app_name>/appserver/static
folder
div[id^='daterange_view'],
div[id^='advanced_view'],
div[id^='relative_view'],
div[id^='realtime_view'] {
display: none;
}
See the solutions in below post to customize time range picker
https://answers.splunk.com/answers/222650/limit-choices-in-default-timepicker.html
Hi @sillingworth,
You can create css which will hide other time range options:
just add css file in <app_name>/appserver/static
folder
div[id^='daterange_view'],
div[id^='advanced_view'],
div[id^='relative_view'],
div[id^='realtime_view'] {
display: none;
}
See the solutions in below post to customize time range picker
https://answers.splunk.com/answers/222650/limit-choices-in-default-timepicker.html
Oooh, of course! That's a very good idea. Thanks 🙂