I'm building a .net web app using Bootstrap styling. I have a datepicker equipped textbox scenario where I would like to avoid the hassle of date string validation. I'm thinking I can simply check for empty string values (no input) as the only necessary validation and disable keyboard input. This way the only input possible is through the datepicker.
My only problem is that the applying the disabled attribute to the datepicker box disables clicking, and the datepicker is shown via the on click for the textbox.
Thus my question is this: how can I disable input for a textbox while still allowing clicking?