ZK Hide the Input Field of Datebox

170 views Asked by At

How can I hide the input field of Datebox? I've tried to set the width to "0px", but the input field still visible.

1

There are 1 answers

0
Hawk On

Do you mean you just want to show the calendar icon?

        .z-datebox-input{
            visibility: hidden;
        }

You can add width:20px to make it smaller.