-
-
Notifications
You must be signed in to change notification settings - Fork 534
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
Add MultiSelection to Datagrid SelectColumn #5619
Comments
I proposed something like this earlier, would be a great addition. |
We have multiple selection mode. Check the docs https://blazorise.com/docs/extensions/datagrid/selection/multiple |
I think that is different, that is for selecting multiple rows. The multi select we propose is for the select filter, now you can only select one value from the dropdown menu. What we looking for is that we can select 2 or more values so that a column gets filtered on that (its a bit like in Excel) . |
Yes I meant the filter. |
@David-Moreira can you help? |
I think it makes sense, the problem is that we currently do not support multiple values filtering. Our internals are just not yet made for it. Similar request was made where user wanted |
Ok, that part wasn't clear to me. Hopefully you can put this on the wish list for a future version. I can use my custom implementation but it got more complicated with the datagrid state management. |
How hard would it be to do it for 1.6? We still have some time left. |
I have to investigate. I'll let you know. |
hmm I think we need to introduce a list of search values, that if exist will be taken into consideration when searching. Since we don't really want to be touching on the existing API I'd probably add
|
Seems good. Create the PR, and I'll see how it behaves. |
Can existing |
I think that might break too much stuff for users. I would do that in a 2.0. |
@David-Moreira, what do you think? How much would it take you for this? PS. Considering that we already have |
Is your feature request related to a problem? Please describe.
Currently you cannot select multiple entries in the
DatagridGridSelectColumn
Describe the solution you'd like
A Solution would be to add a
Multiple
mode from like https://blazorise.com/docs/extensions/selectlistso we could select multiple entries.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: