Reputation: 63
How can I hide the input field of Datebox? I've tried to set the width to "0px", but the input field still visible.
Upvotes: 0
Views: 202
Reputation: 907
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.
Upvotes: 0