Many thanks Vasko.
Best Regards,
Chris
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
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
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