File tree Expand file tree Collapse file tree 2 files changed +1
-5
lines changed
Expand file tree Collapse file tree 2 files changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ The Telerik Date Input supports the standard format strings and specifiers that
2626 * ` MM `
2727 * ` MMM `
2828 * ` MMMM `
29- * ` y `
3029 * ` yy `
3130 * ` yyy `
3231 * ` yyyy `
@@ -38,7 +37,6 @@ The Telerik Date Input supports the standard format strings and specifiers that
3837 * ` mm `
3938 * ` s `
4039 * ` ss `
41- * ` t `
4240 * ` tt `
4341
4442> caution While the results of unsupported format specifiers values will render correctly, editing is not supported for them.
@@ -101,8 +99,6 @@ The Telerik Date Input supports the standard format strings and specifiers that
10199```` CSHTML
102100@using Telerik.Blazor.Components.DateInput
103101
104- <TelerikDateInput @bind-Value="TheDate" Format="d/M/y" /> @TheDate.ToString("d/M/y")
105- <br />
106102<TelerikDateInput @bind-Value="TheDate" Format="dd/MM/yy" /> @TheDate.ToString("dd/MM/yy")
107103<br />
108104<TelerikDateInput @bind-Value="TheDate" Format="dd/MMM/yyyy" /> @TheDate.ToString("dd/MMM/yyyy")
@@ -111,7 +107,7 @@ The Telerik Date Input supports the standard format strings and specifiers that
111107<br />
112108<TelerikDateInput @bind-Value="TheDate" Format="HH:mm:ss" /> @TheDate.ToString("HH:mm:ss")
113109<br />
114- <TelerikDateInput @bind-Value="TheDate" Format="d/M/y h:m:s tt" /> @TheDate.ToString("d/M/y h:m:s")
110+ <TelerikDateInput @bind-Value="TheDate" Format="d/M/yy h:m:s tt" /> @TheDate.ToString("d/M/yy h:m:s")
115111<br />
116112<TelerikDateInput @bind-Value="TheDate" Format="dd/MMM/yyyy H:mm:ss" /> @TheDate.ToString("dd/MMM/yyyy H:mm:ss")
117113<br />
You can’t perform that action at this time.
0 commit comments