DateEdit Behavior #2900
-
The DateEdit component behaves different on the documentation page as to the demo site. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The DateEdit example in the documentation is a little different than it should be. The reason is mostly historically. Current documentation is not running on Blazor but on Jekyll, because 3 years ago that was the best option to make the documentation SEO friendly. That's why they don't run the same. We have already created new documentation that we soon plan to publish and that is completely done on Blazorise this time. See it here https://preview.blazorise.com/docs/components/date Also, regarding the DateEdit behavior. It is created around the native HTML date input, meaning it renders as Because all of this and because we really can't have control over browser, we have introduced new component DatePicker, that has much more option regarding, formating, input mask, etc. You can try it at https://preview.blazorise.com/docs/components/date-picker |
Beta Was this translation helpful? Give feedback.
The DateEdit example in the documentation is a little different than it should be. The reason is mostly historically. Current documentation is not running on Blazor but on Jekyll, because 3 years ago that was the best option to make the documentation SEO friendly. That's why they don't run the same. We have already created new documentation that we soon plan to publish and that is completely done on Blazorise this time. See it here https://preview.blazorise.com/docs/components/date
Also, regarding the DateEdit behavior. It is created around the native HTML date input, meaning it renders as
<input type="date">
, and sincetype="date"
is used it will be in full control by the browser and sy…