You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Popup errormessages from Validators are hidden behind the Dropdowns and DatePickers inputs (from the entries below) when using DataGrid InLine Editing in combiantion with DataGridEditMode.Multiple
Click on "Edit Source" Tab and add a RadzenRequiredValidator to any RadzenDropDown and/or RadzenDatePicker (see full code at the end below)
e.g. <RadzenDropDown @bind-Value="order.CustomerID" Data="@customers" TextProperty="@nameof(Customer.CompanyName)" ValueProperty="@nameof(Customer.CustomerID)" Style="width:100%; display: block;" InputAttributes="@(new Dictionary<string,object>(){ { "aria-label", "Select customer" }})" Name="CustomerDropdown" /> <RadzenRequiredValidator Text="CustomerDropdown is required" Component="CustomerDropdown" Popup="true" />
Click on "Run"
Go back to "Example" Tab
Click "Multiple" right next to Edit Mode
Click "Add new Order" 2 times
Click the Green Check mark button (in the EditControlColumn) on the 2 newly created Rows (without entering any data)
The Error Popups on the Dropdown and DatePicker are hidden by the Dropdown and DatePicker below
Expected behavior
The Popup error messages should not be hidden behind other Input Controls, they should be in front or even occupy their own space.
Screenshots
Desktop (please complete the following information):
OS: Windows 11
Browser Google Chrome
Version 132.0.6834.84
Additional context
As seen in the Screenshot, this does not seem to affect the text inputs.
When there are no pre-existing entries, the error messages are hidden aswell and need to scroll down for (which may be an issue for itself?):
Describe the bug
Popup errormessages from Validators are hidden behind the Dropdowns and DatePickers inputs (from the entries below) when using DataGrid InLine Editing in combiantion with DataGridEditMode.Multiple
To Reproduce
Steps to reproduce the behavior:
e.g.
<RadzenDropDown @bind-Value="order.CustomerID" Data="@customers" TextProperty="@nameof(Customer.CompanyName)" ValueProperty="@nameof(Customer.CustomerID)" Style="width:100%; display: block;" InputAttributes="@(new Dictionary<string,object>(){ { "aria-label", "Select customer" }})" Name="CustomerDropdown" /> <RadzenRequiredValidator Text="CustomerDropdown is required" Component="CustomerDropdown" Popup="true" />
Expected behavior
The Popup error messages should not be hidden behind other Input Controls, they should be in front or even occupy their own space.
Screenshots
Desktop (please complete the following information):
Additional context
As seen in the Screenshot, this does not seem to affect the text inputs.
When there are no pre-existing entries, the error messages are hidden aswell and need to scroll down for (which may be an issue for itself?):
Full Code for step 2:
The text was updated successfully, but these errors were encountered: