vote up 0 vote down star

Hi All,

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!!!!

flag

70% accept rate
don't say it "won't work" without try first! I always do the code before post it :P so i know it always work, eheheh – balexandre Aug 19 at 10:08
made a screencast 4 u ... so, know, dont say it does not work ;) – balexandre Aug 19 at 10:08

1 Answer

vote up 3 vote down check

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:

here is a screen cast of it http://is.gd/2odZd

link|flag
it won't work. i tried this – avnic Aug 19 at 9:38
I've just tried like <asp:TextBox Style="display:none;" and it works. – Biri Aug 19 at 9:43
NEVER, EVER add styles directly ... use CSS, that is why they are available to you, it is not a good pratice and when you ned up with plenty of code it will be a nightmare. Remember: Always create Reusable Code! – balexandre Aug 19 at 10:06
Thanks!!!!!!!!!! – avnic Aug 19 at 10:32
I'm just glad to help – balexandre Aug 19 at 10:58

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.