I'm thinking of building a TimePicker with below format
[ 4:21 PM <Spin Button>]
Before investing time to investigate this possibility.Wanted to know from the Team ,Is it approach good.
If you aware of any other Infragistics control which provides this functionality .
Please help.
Hello Raj,
Were you able to resolve your issue?
Sincerely,Valerie Developer Support Supervisor - XAMLInfragisticswww.infragistics.com/support
Hi Raj,
With the SpinIncrement set to "1m", the minutes will increment and at the appropriate time, going from 12:59 to 1:00, the AM/PM designation will change, incrementing the minutes, hours and AM/PM appropriately.
If you are looking for a separate way to change the AM/PM designation, our spin button is handling the control based on the SpinIncrement. There isn’t a second spin button for AM/PM.
I would also recommend that you add your idea for possibly having multiple spin buttons for different elements of date time, something similar to a time picker. <http://ideas.infragistics.com>.
The Product Ideas site allows you to suggest new product features, new functionalities in existing products and controls, and even request new controls and products altogether. Members of the Infragistics Community can then vote for the features and suggestions they want to see added to the products, resulting in the most popular features bubbling up to the top. When planning new releases, our Product Management team will look at the most popular features and use your feedback to prioritize upcoming work.
This new Infragistics Product Ideas site is simple to use and we encourage you to take a look at it today:
1. Log into the Infragistics Product Idea site at http://ideas.infragistics.com (creating a new login if needed).
2. Navigate to the product / platform channel of your choice (e.g. WPF, Windows Forms, ASP.NET, HTML5 / Ignite UI, iOS / NucliOS, etc.)
3. Add your product idea and be sure to be specific and provide as much detail as possible. Explain the context in which a feature would be used, why it is needed, why it can’t be accomplished today, and who would benefit from it. You can even add screenshots to build a stronger case. Remember that for your suggestion to be successful, you need other members of the community to vote for it. Be convincing!
The Product Idea site puts you in the driver’s seat and you can even track the progress of your ideas at any time, see how many votes it got, read comments from other developers in the community, and see if someone from the product team has additional questions for you.
Please let me know if you have any questions.
Hi Team ,
Once again a great reply.I appreciate your help.
I had tried the above solution , it works but also I need the AM/PM button to spin ,is there way to spin that section.Any help would .
Yes you can create a time picker with just the hours, minutes and AM/PM showing by using the XamDateTimeInput control.
Set the SpinButtonDisplayMode to Always and SpinIncrement to “1m”. Then set the Mask to “hh:mm tt”
The calendar will not expand because of your mask. If you wanted to include months, days or years in your mask then you would need to set the DropDownButtonDisplayMode to Never, if you didn’t want to see the calendar.
<ig:XamDateTimeInput Width="200" Height="20"
Mask="hh:mm tt"
SpinButtonDisplayMode="Always"
SpinIncrement="1m" />
Let me know if you have any questions.