Select a date does not change the month.
Because the selected month is being received to date.
Live Example is the same.
Locale it because?
This is South Korea.
31 Answers, 1 is accepted
Could you please elaborate a bit more on the issue you are facing. Which the example that the problem could be replicated is and what the exact replicating steps are?
Greetings,
Maria Ilieva
the Telerik team
See attachment
I'm not able to replicate the described issue locally, Please find the movie below which represents my local test:
http://screencast.com/t/QIRs5gkiWHV
Best wishes,
Maria Ilieva
the Telerik team
Okay. Look at the following link:
Click Here. http://www.screencast.com/users/mulderxfile/folders/Jing/media/7b40f057-57d0-4f21-bcfd-6b85e0e6685d
Could you please let me know what the local settings on your test machine are so we could try testing the same behavior on our side.
Best wishes,
Maria Ilieva
the Telerik team
- OS : Microsoft Windows Server 2003 Enterprise Edition Service Pack2
- National and Language Options : Republic of korea/Korean
- Time Zone : GMT+09:00 Seoul
Unfortunately it seems that the presented problem is a bug with the Korean culture in RadInput control. We have this bug already logged in our system. As soon as our developers fix the issue we will get back to you.
Excuse us for any inconvenience this may lead.
Kind regards,
Maria Ilieva
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
We are aware of this issue with Chinese Culture also and it is logged to our system. Our dev team is doing their best to provide a fix as soon as possible.
Excuse us for any inconvenience this limitation may lead.
Greetings,
Maria Ilieva
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
Many thanks
Hello Pete,
We already have this problem added in our bug system and our dev team is actively working for fixing the issue. I will increase the priority of this bug. However we could not commit ourselves with exact time frame for fixing the problem as it is a rather difficult and may cause a lot of changes in the control parsing.
Excuse us for any inconvenience this bug may lead.
Greetings,
the Telerik team
Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.
How do you change months display as number (1,2,3,..,12)?
Please refer to the following help topic for more information on this matter:
http://www.telerik.com/help/aspnet-ajax/calendar-date-format-pattern.html
Greetings,
Maria Ilieva
the Telerik team
I want to display months as number in month cell when pop-up month/year opening like Jang Nam Kyu's image. See attachment
Thanks.
In order to achieve the required functionality you could change the month cells text in the server ViewCellCreated event. See the following help topic for more information on this matter:
http://www.telerik.com/help/aspnet-ajax/calendar-view-cell-created.html
Regards,
Maria Ilieva
the Telerik team
Thanks for your reply. I think RadMonthYearPicker don't work well on some other cultures except culture="en-US". So I just change text on monthcell to number and it's not matter anymore.
Thanks again.
what should i do for now?
i need to use monthly picker.
thank you
You can use OnViewCellCreated of RadMonthYearPicker. Something like that:
+ file.aspx:
<
telerik:RadMonthYearPicker
ID
=
"RadMonthYearPicker1"
OnViewCellCreated
=
"RadMonthYearPicker1_ViewCellCreated"
runat
=
"server"
Skin
=
"Windows7"
Culture
=
"en-US"
EnableTyping
=
"False"
>
</
telerik:RadMonthYearPicker
>
protected void RadMonthYearPicker1_ViewCellCreated(object sender, Telerik.Web.UI.MonthYearViewCellCreatedEventArgs e)
{
if (e.Cell.CellType == MonthYearViewCellType.MonthCell)
{
HyperLink hplMonth = (e.Cell.Controls[0] as HyperLink);
hplMonth.BorderColor = Color.Transparent;
if (hplMonth.Text == "Jan")
hplMonth.Text = "1";
if (hplMonth.Text == "Feb")
hplMonth.Text = "2";
if (hplMonth.Text == "Mar")
hplMonth.Text = "3";
if (hplMonth.Text == "Apr")
hplMonth.Text = "4";
if (hplMonth.Text == "May")
hplMonth.Text = "5";
if (hplMonth.Text == "Jun")
hplMonth.Text = "6";
if (hplMonth.Text == "Jul")
hplMonth.Text = "7";
if (hplMonth.Text == "Aug")
hplMonth.Text = "8";
if (hplMonth.Text == "Sep")
hplMonth.Text = "9";
if (hplMonth.Text == "Oct")
hplMonth.Text = "10";
if (hplMonth.Text == "Nov")
hplMonth.Text = "11";
if (hplMonth.Text == "Dec")
hplMonth.Text = "12";
}
}
Good luck.
Or I have to do something specific?
All these culture issues are logged into our tracking system and our dev team is actively working on each of them. We could not commit ourselves with exact time frame in which the bugs will be fixed however I can ensure you that our developers are doing their best to provide solution as soon as possible.
Greetings,
Maria Ilieva
the Telerik team
I appreciate this, although it has been at least 18 months now where the control just doesn't work. Maybe it should be withdrawn ?
Many thanks,
Pete
Our dev team currently actively discuss the control's future and how we should proceed with its limitations. However the most possible scenario is to do our best to fix all the culture related issues instead of obsolete the control which has a lot of features and cold be used in many applications.
Kind regards,
Maria Ilieva
the Telerik team
I set culture is vi-VN and I only could change year. if I select a month, it always displays and selects Jan - "Tháng Giêng".
When I change culture back to en-US, it's ok.
We are aware of this issue too and as I mentioned our dev team is working on all these culture problems.
Thank you for your underestimating.
Regards,
Maria Ilieva
the Telerik team
Hello,
I am facingthe same problem. How is this situation? is there any bug fix?
Waiting for an answer,
Regards
We have made a lot of fixes on that matter in the picker components. I would suggests you to upgrade to the latest release and see how it goes.
Regards,
Maria Ilieva
Telerik