[PR #302] [CLOSED] DropDownDataGrid panel width and IsoCurrency property on NumericTextBox #2106

Closed
opened 2026-01-29 18:17:15 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/radzenhq/radzen-blazor/pull/302
Author: @kostasxagoraris
Created: 12/3/2021
Status: Closed

Base: masterHead: master


📝 Commits (10+)

  • 7c89c84 added ISOCurrencySymbol to override the current culture currency in case the format is c or C
  • e87a775 Added panel minimum width parameter on RadzenDropDownDataGrid
  • 7f67b16 removed PanelMinWidh from demo page
  • 749d4e8 Added option to allow to resize columns on dropdowndatagrid
  • 864cb29 Merge branch 'radzenhq:master' into master
  • 2d998af Added test Numeric_FormattedWithCurrency
  • 628506c Merge branch 'master' of https://github.com/kostasxagoraris/radzen-blazor
  • 5c7a40d Merge branch 'radzenhq:master' into master
  • 3ce45fc Merge branch 'radzenhq:master' into master
  • 6b2249e Added dropdown with pages on pager

📊 Changes

13 files changed (+423 additions, -309 deletions)

View changed files

📝 Radzen.Blazor.Tests/NumericTests.cs (+19 -0)
📝 Radzen.Blazor/FormComponent.cs (+2 -0)
📝 Radzen.Blazor/PagedDataBoundComponent.cs (+9 -0)
📝 Radzen.Blazor/Radzen.Blazor.csproj (+4 -0)
📝 Radzen.Blazor/RadzenDataGrid.razor (+2 -2)
📝 Radzen.Blazor/RadzenDropDownDataGrid.razor (+4 -4)
📝 Radzen.Blazor/RadzenDropDownDataGrid.razor.cs (+15 -0)
📝 Radzen.Blazor/RadzenGrid.razor (+2 -2)
📝 Radzen.Blazor/RadzenNumeric.razor.cs (+46 -2)
📝 Radzen.Blazor/RadzenPager.razor (+16 -7)
📝 Radzen.Blazor/RadzenPager.razor.cs (+301 -289)
📝 RadzenBlazorDemos/Pages/DropDownDataGridPage.razor (+2 -2)
📝 RadzenBlazorDemos/Pages/NumericPage.razor (+1 -1)

📄 Description

I have added 3 new features

  1. I added the ability to set the panel width on dropdownDatagrid
  2. I added the ability to allow to change column header width on dropdownDatagrid
  3. I added the ability to define the currency on numeric text box unrelated to the current culture (useful in multicurrency applications)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/radzenhq/radzen-blazor/pull/302 **Author:** [@kostasxagoraris](https://github.com/kostasxagoraris) **Created:** 12/3/2021 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (10+) - [`7c89c84`](https://github.com/radzenhq/radzen-blazor/commit/7c89c84cbba0b5e50a449e2e2b3926d8dc864064) added ISOCurrencySymbol to override the current culture currency in case the format is c or C - [`e87a775`](https://github.com/radzenhq/radzen-blazor/commit/e87a775f56638537e250666e6dcb725645f1ff4c) Added panel minimum width parameter on RadzenDropDownDataGrid - [`7f67b16`](https://github.com/radzenhq/radzen-blazor/commit/7f67b168f7b9a0087d590a959771d648c8f21da1) removed PanelMinWidh from demo page - [`749d4e8`](https://github.com/radzenhq/radzen-blazor/commit/749d4e82bc07f08451b054946e2e17f839e527e2) Added option to allow to resize columns on dropdowndatagrid - [`864cb29`](https://github.com/radzenhq/radzen-blazor/commit/864cb297d83baddcb5d66ff1549ab624df6294ea) Merge branch 'radzenhq:master' into master - [`2d998af`](https://github.com/radzenhq/radzen-blazor/commit/2d998af4519bd39a0f2db5ca9d41ef4a53eef783) Added test Numeric_FormattedWithCurrency - [`628506c`](https://github.com/radzenhq/radzen-blazor/commit/628506cc6c47d56b6fde3d7643507f385bbfd142) Merge branch 'master' of https://github.com/kostasxagoraris/radzen-blazor - [`5c7a40d`](https://github.com/radzenhq/radzen-blazor/commit/5c7a40dd7dc5802095fabb8ead3654194253bcc1) Merge branch 'radzenhq:master' into master - [`3ce45fc`](https://github.com/radzenhq/radzen-blazor/commit/3ce45fcd19eac52920bcb677031709661b0f3edb) Merge branch 'radzenhq:master' into master - [`6b2249e`](https://github.com/radzenhq/radzen-blazor/commit/6b2249ee50055602e06c4dc5115f5d77899f928a) Added dropdown with pages on pager ### 📊 Changes **13 files changed** (+423 additions, -309 deletions) <details> <summary>View changed files</summary> 📝 `Radzen.Blazor.Tests/NumericTests.cs` (+19 -0) 📝 `Radzen.Blazor/FormComponent.cs` (+2 -0) 📝 `Radzen.Blazor/PagedDataBoundComponent.cs` (+9 -0) 📝 `Radzen.Blazor/Radzen.Blazor.csproj` (+4 -0) 📝 `Radzen.Blazor/RadzenDataGrid.razor` (+2 -2) 📝 `Radzen.Blazor/RadzenDropDownDataGrid.razor` (+4 -4) 📝 `Radzen.Blazor/RadzenDropDownDataGrid.razor.cs` (+15 -0) 📝 `Radzen.Blazor/RadzenGrid.razor` (+2 -2) 📝 `Radzen.Blazor/RadzenNumeric.razor.cs` (+46 -2) 📝 `Radzen.Blazor/RadzenPager.razor` (+16 -7) 📝 `Radzen.Blazor/RadzenPager.razor.cs` (+301 -289) 📝 `RadzenBlazorDemos/Pages/DropDownDataGridPage.razor` (+2 -2) 📝 `RadzenBlazorDemos/Pages/NumericPage.razor` (+1 -1) </details> ### 📄 Description I have added 3 new features 1. I added the ability to set the panel width on dropdownDatagrid 2. I added the ability to allow to change column header width on dropdownDatagrid 3. I added the ability to define the currency on numeric text box unrelated to the current culture (useful in multicurrency applications) --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 18:17:15 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/radzen-blazor#2106