This is a migrated thread and some comments may be shown as answers.

Only Time picker

18 Answers 1037 Views
Calendar, DateTimePicker, TimePicker and Clock
This is a migrated thread and some comments may be shown as answers.
Gourangi
Top achievements
Rank 1
Gourangi asked on 05 Jun 2008, 07:18 AM
dont we have functionality for selection of only time (in raddatetime picker win forms q3 2007), just like we have for asp.net toolkit.

thanks
divyesh

18 Answers, 1 is accepted

Sort by
0
Boyko Markov
Telerik team
answered on 06 Jun 2008, 08:10 AM
Hi Divyesh Chapaneri,

Thank you for writing.

What you select depends on what you have set as a format string in the date time picker. However, when you click on the drop down, a calendar control would always be shown.

You can modify this behavior by setting the date time picker to work in a date time format and have spin buttons instead of a drop down which activates the calendar. To activate the spin mode, use the ShowUpDown property of RadDateTimePicker. To show only time, set the Format property to time.

I hope this helps. If you need additional assistance please contact me.

All the best,
Boyko Markov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Gourangi
Top achievements
Rank 1
answered on 06 Jun 2008, 10:56 AM
its good that we can have updown buttons and can set its format but i want to replace that drop down calendar with time options just like we have in rad asp.net controls.
0
Boyko Markov
Telerik team
answered on 09 Jun 2008, 09:00 AM
Hello Divyesh Chapaneri,

Thank you for writing.

Thank you for your proactive approach - we're always glad to hear from customers who give us their feedback on our product and how they would like to see it evolve.

Currently, there is no workaround for this issue, and we will consider adding this feature to RadDateTimePicker in the future.

If you have any other questions, please write me back.

All the best,
Boyko Markov
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Mark Griebling
Top achievements
Rank 1
answered on 26 Sep 2008, 05:44 AM
I would also like the functionality to pick a time from the drop down like the asp.net ajax controls.
0
Boyko Markov
Telerik team
answered on 26 Sep 2008, 07:17 AM
Hi Mark Griebling,

Thank you very much for the suggestion Mark.
We do not have any plans at present to implement such control for our component suite. We believe this functionality could be accomplished by using a RadComboBox that has pre-populated datetime items in its dropdown.Do you know any other third party datetime picker for the Windows Forms platform that exposes simmilar behavior.


Regards,
Boyko Markov
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Mark Griebling
Top achievements
Rank 1
answered on 26 Sep 2008, 03:19 PM
Boyko,

I haven't looked yet.  I just found it very useful in the rad asp.net for ajax suite.  Since we are developing both a web and windows version of our application, I thought we'd get similar functionality by using rad controls for both.

Mark
0
FERNANDO
Top achievements
Rank 1
answered on 10 Feb 2009, 05:58 PM
I also need to use this functionality within a windows application. 
0
Boyko Markov
Telerik team
answered on 11 Feb 2009, 05:59 AM
Hi FERNANDO,

Thank you for the suggestion. As I have said before we still do not have this feature available in our RadDateTimePicker. However one additional request for it made us pull-up its development in our TODO list. I will let you know guys, when the feature is available.
 
If you have any other questions please feel free to ask.


Sincerely yours,
Boyko Markov
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
0
Jaymie
Top achievements
Rank 1
answered on 18 May 2010, 03:46 PM
has this been done yet? I am having a similar problem with my control.

Also, I would like it to move from hours to minutes without having to press the arrow keys. Is this currently possibe?
0
Boyko Markov
Telerik team
answered on 20 May 2010, 04:49 PM
Hello Jaymie,

This feature is not yet implemented. I will increase the feature's priority and hopefully our developers will have enough resources to implement it for the upcoming major release - RadControls for WinForms Q2 2010. Unfortunately, there is no workaround we ca suggest for this type of text input.  
 
If you need more information, please do not hesitate to write us.

Greetings,
Boyko Markov
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
Maciej Aniserowicz
Top achievements
Rank 1
answered on 26 May 2010, 08:28 AM

Hi,

+1 from me. I'd love to see this kind of functionality in telerik winforms suite.

0
Nikolay
Telerik team
answered on 31 May 2010, 10:00 AM
Hello Maciej,

Thank you for your vote. You can vote for this feature in our Public Issue Tracking System as well since this is the best place where you can increase the priority of an issue/feature request. As Q2 2010 is near, I cannot provide you with a specific time frame concerning the TimePicker control.

Best wishes,
Nikolay
the Telerik team

Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
0
xulfi khan
Top achievements
Rank 1
answered on 01 Jul 2010, 07:07 AM
Hi , i had found the way to show only time from time picker .. you just have to convert your control value to datetime and then from there  you have to change it to time only.
there is code below.
Time picker has property selected date .

 
DateTime dt=(DateTime)RadTimePicker1.SelectedDate;
label1.text=dt.ToShortTimeString()


for any query or help .contact me at(info@visiostudio.net)
or visit my site http://www.visiostudio.net/
0
tran
Top achievements
Rank 1
answered on 17 Dec 2010, 08:27 AM
Hi I also need this feature for my project. Moreover, in RadDateTimePicker when user click on dropdown button,it will show date only.I need it will show date and time also.
0
xulfi khan
Top achievements
Rank 1
answered on 20 Dec 2010, 06:25 AM
No there is not such scenario in date and time picker . Date & Time picker always shows both Date and Time as well. what i guess is , you are dropping wrong control like date picker instead of D & T picker . or other thing is might be your time picker is not enable from properties..
0
Stefan
Telerik team
answered on 22 Dec 2010, 12:51 PM
Hello tran, 

Thank you for writing.

You can show the time in the RadDateTimePicker drop down, but it will only show the current time and you will not be able to select it. If you find this helpful, you can do it by using the following code snippet:
RadDateTimePickerCalendar calendarBehavior = this.radDateTimePicker1.DateTimePickerElement.GetCurrentBehavior() as RadDateTimePickerCalendar;
        RadCalendar calendar = calendarBehavior.Calendar as RadCalendar;
        calendar.ShowFooter = true;

Let me know if you need further assistance.

Best wishes,
Stefan
the Telerik team
Check out the Q1 2011 Roadmap for Telerik Controls for Windows Forms.
0
liu qingshui
Top achievements
Rank 1
answered on 25 Dec 2010, 06:23 AM
Hey Stefan :

What's the class RadDateTimePickerCalendar's Namespace?
I can't find this class in the Namesapce Telerik.Web.UI.
0
Stefan
Telerik team
answered on 29 Dec 2010, 10:25 AM
Hi Gourangi,

Thank you for your reply. 

You say, that you are looking into the Telerik.Web.UI dll, which is not part of the RadControls for WinForms suite. I suppose that your question is related to the RadControls for ASP .NET AJAX suite. If this is the case, please open a new forum thread in our ASP .NET AJAX forum, or open a new support ticket by pointing at the RadControls for ASP .NET AJAX controls. Let me know if you need further assistance on how to address this issue.

When using RadControls for WinForms, the RadDateTimePickerCalendar class is located in the following namespace:

Telerik.WinControls.UI.RadDateTimePickerCalendar

I hope you find this information helpful. If there is anything else I can assist you with, do not hesitate to contact me.
 
Regards,
Stefan
the Telerik team
Q3’10 SP1 of RadControls for WinForms is available for download; also available is the Q1'11 Roadmap for Telerik Windows Forms controls.
Tags
Calendar, DateTimePicker, TimePicker and Clock
Asked by
Gourangi
Top achievements
Rank 1
Answers by
Boyko Markov
Telerik team
Gourangi
Top achievements
Rank 1
Mark Griebling
Top achievements
Rank 1
FERNANDO
Top achievements
Rank 1
Jaymie
Top achievements
Rank 1
Maciej Aniserowicz
Top achievements
Rank 1
Nikolay
Telerik team
xulfi khan
Top achievements
Rank 1
tran
Top achievements
Rank 1
Stefan
Telerik team
liu qingshui
Top achievements
Rank 1
Share this question
or