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

[Bug]: Resizable: Resizable not working using bootstrap5 #5904

Closed
Vishakha27200 opened this issue Dec 17, 2024 · 1 comment
Closed

[Bug]: Resizable: Resizable not working using bootstrap5 #5904

Vishakha27200 opened this issue Dec 17, 2024 · 1 comment
Assignees
Labels
Type: Bug 🐞 Something isn't working
Milestone

Comments

@Vishakha27200
Copy link

Vishakha27200 commented Dec 17, 2024

Blazorise Version

1.7.1

What Blazorise provider are you running on?

Bootstrap5

Link to minimal reproduction or a simple code snippet

 <DataGrid TItem="TestResultSummary" Navigable Resizable ResizeMode="TableResizeMode.Columns"
             Data="@TRvm.TestResults.ToList()" @ref="TRvm.bgrid" RowClicked="async args => await SingleClickStaticPresenterRefresh(args)"
   @bind-SelectedRows=TRvm.SelectedTestResults RowDoubleClicked="async args => await StaticPresenterOpen(args)"
             SelectionMode="Blazorise.DataGrid.DataGridSelectionMode.Multiple" Bordered 
             RowContextMenu="@OnRowContextMenu" RowContextMenuPreventDefault="true"
             Class="custom-grid-class" Sortable SortMode="DataGridSortMode.Single" Filterable FilterMode="DataGridFilterMode.Menu" Responsive FixedHeader Virtualize>
   <DataGridMultiSelectColumn Width="200px"></DataGridMultiSelectColumn>
   <DataGridCommandColumn />
   <DataGridColumn DisplayOrder="1" Caption="#" Filterable="false" Sortable="false" TextAlignment="TextAlignment.Center" Editable="true" Width="150px">
       <DisplayTemplate>
           @(((TRvm.bgrid?.DisplayData.ToList().IndexOf(TRvm.bgrid?.DisplayData.Where(x => x.Id == context.Id).FirstOrDefault())) + 1))
          </DisplayTemplate>
      </DataGridColumn>
      <DataGridColumn DisplayOrder="2" Field="Label" Caption="@Resources.Label" TextAlignment="TextAlignment.Start" SortComparer="new AEM.TDPU.DataModels.Comparer.TestResultSummaryLabelComparer()" Editable="true" Width="150px">
          <DisplayTemplate>
              @context.Label
          </DisplayTemplate>
      </DataGridColumn>

   </DataGrid> 

Steps to reproduce & bug description

In my web project, the resizable feature is not working despite adding all the required attributes in the code. I have included all necessary Bootstrap 5 links and installed the Bootstrap 5 package. Additionally, I have completed all the necessary configurations, but the functionality still isn't working as expected. Please suggest improvements to resolve this issue.

What is expected?

I expected the resizing functionality to work in my project after completing all the necessary configurations.

What is actually happening?

The resizing feature is not functioning properly in my project.

What browsers do you see the problem on?

No response

Any additional comments?

No response

@Vishakha27200 Vishakha27200 added the Type: Bug 🐞 Something isn't working label Dec 17, 2024
@stsrki
Copy link
Collaborator

stsrki commented Dec 19, 2024

Should be fixed with #5908

@stsrki stsrki self-assigned this Dec 19, 2024
@stsrki stsrki added this to Support Dec 19, 2024
@stsrki stsrki added this to the 1.7 support milestone Dec 19, 2024
@github-project-automation github-project-automation bot moved this to 🔙 Backlog in Support Dec 19, 2024
@stsrki stsrki closed this as completed Dec 19, 2024
@github-project-automation github-project-automation bot moved this from 🔙 Backlog to ✔ Done in Support Dec 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Type: Bug 🐞 Something isn't working
Projects
Status: ✔ Done
Development

No branches or pull requests

2 participants