Telerik Version: 2010.1.309.35
Browser: Firefox, Chrome
When setting the style of a table row to display none on the server side, the javascript client side throws an error.
this._middleRightBar is undefined
ScriptResource.axd?d=WMQz7XgxBIdcpwwythMfyxAMDy1VyYjq5NEdNFqBICqtGSNJXx-Yax1OJRMKYw6z0&t=5ffe9675
Line:
Work Around:
Set the RadDockLayout.Visible = False
Browser: Firefox, Chrome
When setting the style of a table row to display none on the server side, the javascript client side throws an error.
this._middleRightBar is undefined
ScriptResource.axd?d=WMQz7XgxBIdcpwwythMfyxAMDy1VyYjq5NEdNFqBICqtGSNJXx-Yax1OJRMKYw6z0&t=5ffe9675
Line:
this._middleRightBar.setAttribute("unselectable","on");
| <tr id="OptionsRow" runat="server"> |
| <td style="vertical-align: text-top;" colspan="2"> |
| <telerik:RadDockLayout ID="OptionsLayout" runat="server" EnableEmbeddedSkins="false"> |
| <telerik:RadDockZone runat="server" |
| ID="OptionsZone" |
| BorderWidth="0px" |
| BorderStyle="None"> |
| <telerik:RadDock runat="server" |
| ID="RadDockPriority" |
| EnableDrag="False" |
| Visible="true" |
| Collapsed="true" |
| BackColor="#000099" |
| Skin="Office2007" |
| DefaultCommands="None"> |
| Public Sub HideRow(ByRef row As HtmlTableRow) |
| If Not Account.IsDeveloper OrElse True Then |
| row.Attributes.Add("style", "display: none;") |
| Else |
| row.Attributes.Add("style", "background-color: #c0c0c0;") |
| End If |
| End Sub |
Work Around:
Set the RadDockLayout.Visible = False