There is a possibility to make changes in the look and feel of a timepicker.
Related sample: Timepicker. Custom Style
For this you need to take the following steps:
<style>
.my-first-class {
/*some styles*/
}
.my-second-class {
/*some styles*/
}
</style>
var timepicker = new dhx.Timepicker({
css:"my-first-class my-second-class"
});
Back to top