Unplanned
Last Updated: 13 Jun 2025 11:26 by Chris
Chris
Created on: 12 Jun 2025 06:45
Category: Grid
Type: Bug Report
0
GridDropDownColumn Edit Popup has two labels
When editing a GridDropDownColumn in version 2025.2.609, there is an additional label generated for the DropDown.
4 comments
Chris
Posted on: 13 Jun 2025 11:26

Many thanks Vasko.

Best Regards,

Chris

ADMIN
Vasko
Posted on: 13 Jun 2025 04:51

Hi Chris,

The original shared CSS is for Grids with EditMode set to "InPlace" or "PopUp", while yours is for "EditForms". Below, I have updated the CSS selector to target every edit mode: 

html body .RadGrid .rgEditRow td .rcbLabel, 
html body .RadGrid .rgEditForm td .rcbLabel,
html body .RadGrid .rgBatchContainer .rcbLabel,
html body .RadGrid .RadComboBox .rcbLabel {
    display: none;
}

Regards,
Vasko
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources
Chris
Posted on: 12 Jun 2025 11:20

Hi Vasko,

This didn't work, but the following did:

html body .RadGrid .rgEditForm td .rcbLabel {
    display: none;
}

Can you confirm that this is what was what you intended to put?

Can you also confirm that this would also work from a mobile or would we also have to apply the style to rgMobileEditForm?

Best Regards,

Chris

ADMIN
Vasko
Posted on: 12 Jun 2025 06:48

Hi Chris,

Thank you for reporting this issue, and we are currently investigating it. You can remove the second label by using CSS: 

html body .RadGrid .rgEditRow td .rcbLabel {
    display: none;
}

Regards,
Vasko
Progress Telerik

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources