I am trying to format the datetime picker to output or return string format "YYYYMMDD:HHMMSS"
Can someone assist me?
EndTime = ultraDateTimeEditorEndTime.DateTime.ToString();
EndTime should display "YYYYMMDD:HHMMSS",
also when how to view time when you click a specific date, I want to be to pick a date and time from the calender
Hello Keith,
If you are using FormatString property of your UltraDateTimeEditor, maybe you should used:
FormatString = "yyyyMMdd:hhmmss";
If you want to get the value from your UltraDateTimeEditor in the mentioned format, maybe you could used:
String.Format( "{0:yyyyMMdd HHmmss}", ultraDateTimeEditor1.Value)
Please take a look at the attached sample for mre details and let me know if you have any questions.
Regards
Ok thats working, what about time, does the datepicker allow you to select time, I want to give the user the ability to be able to select both date and time range.
I`m not sure, but maybe you are looking for the property MaskInput = "{date} {time}". Also other approach could be if you are using two UltraDateTimeEditors. The first one has properties
- MaskInput = Date
- FormatString = "dd/MM/yyyy"
The second one
- MaskInput = Time
- FormatString ="HH:mm"
Please take a look at the screenshot below. Let me know if you think that I misunderstood your questions or if you have any further questions.
so is thats a time picker where the 12:00, if so how to get access to the time picker, at the moment when the click the datetime picker, they only get dates or calender. you know you go book a flight and they kind sort let you pick the time of the day , like 1pm, 2:30pm, 3:30. or do i have to dynamically hard code the time values in.
Hi,
Could you please take a look at the attached sample for more details and let me know if you have any questions.
Not quite, review attachment, I sent an example, I can hard code values in the textbox, but i am trying to see infragistics, have this by default before i do the extra work.
Thanks for attached screenshot. I think that you could achive desired behavior (also look and feel). I made small sample for you. Could you please take a look at the attached sample and video file. Let me know if you have any questions.
ALso for the report viewe, I finally found how to get access to the ultra explorer, can you show me how to add a hyperlink to a specific colomn, I want to be able to click a link in the report and it fire an event to go do something.
The solution is not building at all
OK. Thanks for your response. Feel free to write us .
Hey i havent tested it yet, I am reading the documentation of the reportviewer that you guys have, I dont see how to get access to the Report viewer explorer in visual studio. I check all places. I added the UltraReportViewer Control. But I dont see the Report explorer to add the the datasource etc.. I am going to post in another forum, review when time permits.
Have you been able to resolve your issue ? Did you have a time to take a look at the attached sample. Let me know if you have any questions.