Hide Row isn't hiding other RadControls in a RadGrid IE7 Works in Firefox 3.5
Telerik control version 2009.3.1208.20
Thanks
Thomas
3 Answers, 1 is accepted
0
Dimo
Telerik team
answered on 21 Apr 2010, 10:07 AM
Hello Thomas,
Internet Explorer has a problem, which leads to positioned elements always being displayed, even inside table rows with a display:none style. A possible workaround is to set a CSS class to all hidden rows and then use the following CSS rule:
.hiddenRowClass *
{
position:static !important;
}
Best wishes,
Dimo
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.
// Use Sys.UI.DomElement.removeCssClass(item, "hiddenRowClass"); when showing the row
Best wishes,
Dimo
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items.