This question is locked. New answers and comments are not allowed.
Hello,
I have a question about disabeling the datepicker.
We implemented this with the Q2 2010 release.
We used the code below and it always worked:
What is does it also disables the textbox and the calender control.
This week we went to the latest version (2010 Q3) the method is hit.
But they are still enabled. Is this a known issue (if it is an issue) or did something changed?
Regards,
Gerard
I have a question about disabeling the datepicker.
We implemented this with the Q2 2010 release.
We used the code below and it always worked:
var IsChecked = $('#FutureDates').is(':checked'); if (IsChecked) { var input = $('#TotDatum').find('> .t-input'); input.attr("disabled", true); input.val(''); input.css('background-color', '#DCDCDC'); //$('#TotDatum-input').css('background-color', 'gray'); $('#TotDatum > .t-icon').unbind('click') $('#TotDatum > .t-icon').bind('click', function () { return false; }) }This week we went to the latest version (2010 Q3) the method is hit.
But they are still enabled. Is this a known issue (if it is an issue) or did something changed?
Regards,
Gerard