-
Notifications
You must be signed in to change notification settings - Fork 373
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add different types to FluentDatePicker #2439
Comments
We have already discussed about this (in other threads) :-) |
Hi @dvoituron, Thanks for pointing this out. In my opinion, this should be supported out of the box. Can't the component handle the conversion by itself? Otherwise, this will generate a lot of boilerplate code. I'm pretty sure you don't want to write this mapping code yourself each time, right? :) Perhaps this implementation from another library might be interesting for you guys: In my opinion, this kind of stuff is one of the larger weaknesses of this package. Many basic things are pretty hard to implement because there are like three ways of doing something for the same purpose, but only one way works in this scenario and another way works in that scenario. This library would benefit a lot if those areas could be improved in the future. More stuff would work just like vanilla Blazor. |
We'll look at this one for a later release again
Not sure if that one is a good reference as there was a accusation of them
Would be great if we can have a more specific list of things you are running into. It is good for us to hear for devs who are using the library on a 'day-to-day' base. But we have only a limited amount of time available to work on this. As you may know, this is 'just' a side project for both Denis and me. We can't make any promises on when some things might get solved.
Agreed. But as I said time and capacity are and will remain an issue for the foreseeable future. |
I think you are referring to the
Yes I know. I totally understand that you cannot commit 100% of your time to this project. Whenever I ran into some issues I try to fix them by myself first before I post an issue. I try to put together a list of things But this would blow up this issue here. I might create a topic in the discussions instead. The list is quite long (but many stuff cannot be resolved in this version). |
I did not mean here in this issue specifically either. Discussion area is good for this.
Good, because we are also thinking and brainstorming on the next version. Lets discuss further in the standup later today! |
🙋 Feature Request
The
FluentDatePicker
should support other types besides ofDateTime?
. It should fully support these types:🤔 Expected Behavior
😯 Current Behavior
Currently the
FluentDatePicker
only supportsDateTime?
🔦 Context
I have DateTime properties which cannot be null. Therefore I don't want to create a seperate model or change my implementation to nullable just because the FluentDatePicker only allows for
DateTime?
The text was updated successfully, but these errors were encountered: