vote up 0 vote down star

Hello friends!!!

I have used jquery datepicker in my .aspx page. The control is working fine. What i need is to disable the control if the textbox on which it is linked is disabled. For ex. I am showing datepicker on textbox "txtDateOfAssignment". If the Enabled property of this textbox is false then datepicker should not be active on that.

Anybody have an idea?

Thanks in advance.

flag

1 Answer

vote up 1 vote down check

if you look at the documentation you'll notice that there is a "disable" method, so you can do :

$('id-of-your-textbox').datepicker('disable');

Ok, finally you're not using jquery-UI but jquery-datepicker, so it should be more something like as referred to the documentation here

$(document).ready(function () {
  $('.date-picker').dpSetDisabled(true);
});

If you want to disable only 1 datepicker dont use the class selector ".date-picker" but the id of the datepicker you want to disable.

link|flag
Thanks Mike! But i am not using UI datepicker. The above code is not working for me. – IrfanRaza Oct 27 at 8:28
hmm ok so which one are you using ? – Mike Oct 27 at 14:58
Please look at this link kelvinluck.com/assets/jquery/…. There is also demo on disabling datepicker (kelvinluck.com/assets/jquery/…), but i am unable to implement it on Page_Load event of my aspx page. There are date fields in my aspx page, some of which need to be disabled while page is being displayed. Thanks for sharing your valuable time. – IrfanRaza Oct 27 at 15:32
I dont't know aspx but did you wait for the DOM being ready .. as the example I just added – Mike Oct 27 at 16:38

Your Answer

Get an OpenID
or

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