Skip to content
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

QuickGrid in NET 8 - column resizing #47494

Open
1 task done
Jarek300 opened this issue Mar 30, 2023 · 4 comments
Open
1 task done

QuickGrid in NET 8 - column resizing #47494

Jarek300 opened this issue Mar 30, 2023 · 4 comments
Labels
area-blazor Includes: Blazor, Razor Components enhancement This issue represents an ask for new feature or an enhancement to an existing one feature-blazor-quickgrid
Milestone

Comments

@Jarek300
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Is your feature request related to a problem? Please describe the problem.

I am trying to use QuickGrid and the only feature that is missing is column resizing. As a simple component, it is almost feature complete and column resizing is the only missing part.

Describe the solution you'd like

It should be possible to resize the column with a mouse or touch. It should be possible to set column width in code.

Additional context

No response

@adityamandaleeka adityamandaleeka added area-blazor Includes: Blazor, Razor Components feature-blazor-quickgrid and removed area-runtime labels Mar 30, 2023
@MackinnonBuck MackinnonBuck added this to the Backlog milestone Apr 3, 2023
@ghost
Copy link

ghost commented Apr 3, 2023

We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.

@MackinnonBuck MackinnonBuck added the enhancement This issue represents an ask for new feature or an enhancement to an existing one label Apr 3, 2023
@aburakab
Copy link

aburakab commented Aug 27, 2023

For now, I used resize css :) for my header. Also you can customize the header like this <HeaderTemplate>
Maybe the double click auto-fit is the thing that we need :)

.col-title {
    scroll-padding: 0;
    resize: horizontal;
    overflow: hidden;
}

@mkArtakMSFT mkArtakMSFT modified the milestones: Backlog, BlazorPlanning Nov 5, 2023
@nibblersrevenge
Copy link

For now, I used resize css :) for my header. Also you can customize the header like this <HeaderTemplate> Maybe the double click auto-fit is the thing that we need :)

This is cool! But it changes the sort direction. I changed ist a little:

.quickgrid .col-header-content {
    scroll-padding: 10px;
    resize: horizontal;
    overflow: hidden;
    min-width:100%!important;
}

@ghost
Copy link

ghost commented Nov 29, 2023

We've moved this issue to the Backlog milestone. This means that it is not going to be worked on for the coming release. We will reassess the backlog following the current release and consider this item at that time. To learn more about our issue management process and to have better expectation regarding different types of issues you can read our Triage Process.

@dotnet-policy-service dotnet-policy-service bot added the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 6, 2024
@wtgodbe wtgodbe removed the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 6, 2024
@dotnet-policy-service dotnet-policy-service bot added the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 6, 2024
@wtgodbe wtgodbe removed the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 13, 2024
@dotnet dotnet deleted a comment from dotnet-policy-service bot Feb 13, 2024
@dotnet dotnet deleted a comment from dotnet-policy-service bot Feb 13, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-blazor Includes: Blazor, Razor Components enhancement This issue represents an ask for new feature or an enhancement to an existing one feature-blazor-quickgrid
Projects
None yet
Development

No branches or pull requests

8 participants
@aburakab @adityamandaleeka @nibblersrevenge @Jarek300 @MackinnonBuck @wtgodbe @mkArtakMSFT and others