New to Kendo UI for Vue? Start a free 30-day trial
Hide the Specify time zone in the Scheduler
Updated over 6 months ago
Environment
| Product Version | 4.3.2 |
| Product | Progress® Kendo UI for Vue Native |
Description
How can I hide the Specify time zone in the Scheduler edit form?
Solution
This can be achieved by setting display: none to the k-form-field using nth-of-type:
html
<style>
.k-form-field:nth-of-type(3) {
display: none !important;
}
</style>
Runnable example
Change Theme
Theme
Loading ...