Reputation: 3351
i'm using this control for date picker. i want that when user click on button the calender will pop up next to the button and when the user pick date the date will save in hidden field or somthing like that.
the probelm is that the control need target control and he can't get hidden field i don't want to show the date the user pick. only to save this date somehow
thanks!!!!
Upvotes: 0
Views: 218
Reputation: 75073
why not hidding the Textbox (target control ID)
<asp:TextBox CssClass="hide" ...
.hide { display: none; }
Works fantastic! Maybe you don't know how to implement it :)
for that:
Upvotes: 3