Hi,
I used WebdateChooser control for selecting Date Of Birth in a web page. The user may need to select the date which is around 1950. With my current WebDateChooser control, I am not able to scroll the year.
Please suggest me, how to do this. Thanks in Advance.
Hi sivakarthik,
Thank you for posting in the community.
I suggest that you try setting the DropDownYearsNumber property in the date chooser's calendar layout:
WebDateChooser1.CalendarLayout.DropDownYearsNumber = 50;
Please note that WebDateChooser is now outdated and as of version 11.2 of .NetAdvantage is no longer inlcuded in our product suite. You can find a detailed list of the retired controls and their respective replacements at:
http://community.infragistics.com/blogs/taz_abdeali/archive/2011/11/17/asp-net-product-changes-in-2011-volume-2.aspx
Hope this helps.
Hi Petar Ivanov,
Thank you very much for the reply. It works fine.
And, Instead of doing it in Page Load, I did it in client side, like below.
<CalenderLayout DropDownYearsNumber="50" />
Even this works fine. Thanks again for the help.
Thanks,
Siva