Parse c# DateTime to Kendo DateTimePicker format - c#

I was working on edit of a form. I had stored value returned from Kendo DateTimePicker into SQL Server with smalldatetime data type through DateTime of c#. Now while editing I want to display the stored data into the same DateTimePicker. I realized that c# returns date in the format of 2017-07-05T14:53:00 but Kendo DateTimePicker returns value in the format 7/20/2017 2:00AM. I am trying to set the value of Kendo DateTimePicker to the default value of the model. I have tried the following code but it is not working
kendo.parseDate("#Model.date", "dd-MM-yyyyTHH:mm:ss")
How do I do it?

Related

DeafultcCellStyle format not working on unbound DataGridView C# Winforms

I have an unbound DataGridView that I populate with data from an SQL database. One of the columns in the database is of type ‘datetime’.
On the load event of my winforms application, I use code below in order to format the column to only show date part of datetime column. However it shows the full datetime. I want 18/02/2020 and it’s showing 18/02/2020 00:00:00
dgv.Columns["Date"].DefaultCellStyle.Format = "dd/MM/yyyy"
dgv.Columns["Date"].ValueType = typeof(System.DateTime);
How do I format the column to only show the date portion of the datetime column?
I added some data in the gridview within my code and tried your code above. The DefaultCellStyle.Format works well.
Which means that you might need to check the way you're retrieving the data from your SQL Database. You may be filling your grid with strings instead of "dates" for example.

Adding date to Date picker and then bind Date to viewModel in Xamarin.Forms

What would be the way to achieve this?
I pass date value to the Date of DatePicker and it works but later I want to do Date{Binding Value} in Xaml so the selected date is passed to the setter getter for further SQLite insertion. However as soon as I add Date{Binding Value} the first date that is passed is not being passed.

How to convert MM/dd/yyyy to yyyy-MM-dd format ASP.Net [duplicate]

This question already has answers here:
How to format gridview columns?
(2 answers)
Closed 4 years ago.
I have a Gridview in my aspx page that displays Names and Dates coming from my Database and some Textbox to search data from Database.
The format of the dates saved in my database is yyyy-MM-dd but I want to display it on my Gridview in MM/dd/yyyy, so I used
SELECT ID, Name, convert(varchar(10), StartDate, 101) as [StartDate] FROM MyDB
to make it happen. Now instead of displaying 2016-12-13, it is displayed on my gridview like this: 12/13/2016
Now my problem is, when I'm using my textbox to filter the Gridview using the dates, the format of the date typed should be in yyyy-MM-dd in order for it to display results. That's why I'm thinking of converting the MM/dd/yyyy typed in the textbox to yyyy-MM-dd.
So when I type 12/13/2016, It will be converted to 2016-12-13 then add it to my SQLCommand.
EDIT
I forgot to mention the reason why I'm converting the date. That's because it also displays Time in the Gridview even though the data saved in Database is date only. So without converting, it looks like this: 5/12/2016 12:00:00 AM
Console.WriteLine(
DateTime.ParseExact("12/13/2016","d", CultureInfo.InvariantCulture).ToString("yyyy-MM-dd"));
produces 2016-12-13

DataGridView Date format change while print in C#

I have a data gird view that display date in Arabic language, however when i print this grid view the date came out in English, how to fix this ?
Use Column.DefaultCellStyle.Format property or set it in designer

get the value of date picker used in gridview

i have create dynamic datepicker inside gridview. i want to know how to get the values of the datepicker
help me out!!
i have used this line
DateTime date2 = DateTime.Parse(((TextBox)Gridview1.Rows[rowIndex].Cells[3].FindControl("frmdate_endtime")).Text);
Why not cast the control to the appropriate date/time picker class and take the value from that directly? You shouldn't need to parse the text.

Categories

Resources