or
| <%@ Control Language="vb" AutoEventWireup="false" CodeBehind="radSystemHeader.ascx.vb" |
| Inherits="HEW.radSystemHeader" %> |
| <link rel="stylesheet" href="~/StyleSheets/SkinAddStyles.css" /> |
| <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager> |
| <table cellspacing="0" cellpadding="0" width="100%" border="0"> |
| <tr> |
| <td colspan="2"> |
| <table cellspacing="0" cellpadding="0" width="100%" align="center" border="1"> |
| <tbody> |
| <tr> |
| <td width="9%" bgcolor="#ffffff" valign="middle" align="center"> |
| <a href="<%=Path%><%=sLink%>"> |
| <img height="52" src="<%=Path%>images/Page/logo.jpg" width="70" border="0"></a> |
| </td> |
| <td valign="top" align="left"> |
| <table cellspacing="0" cellpadding="0" width="100%" border="0"> |
| <tr> |
| <td width="33%"> |
| <asp:Label ID="lblServiceProvider" runat="server"></asp:Label> |
| </td> |
| <td align="center" width="33%"> |
| <asp:Label ID="lblUser" runat="server"></asp:Label> |
| </td> |
| <td align="right" width="33%"> |
| <asp:Label ID="lblDate" runat="server"></asp:Label> |
| </td> |
| </tr> |
| <tr> |
| <td colspan="3"> |
| <table width="100%"> |
| <tr> |
| <td width="10%"> |
| |
| </td> |
| <td align="right" width="35%"> |
| <asp:Label ID="lblHeaderPatient" runat="server">Patient Name:</asp:Label> |
| </td> |
| <td width="10%"> |
| |
| </td> |
| <td align="left" width="35%"> |
| <asp:Label ID="lblHeaderPatientAcctNo" runat="server">Account Number:</asp:Label> |
| </td> |
| <td width="10%"> |
| |
| </td> |
| </tr> |
| </table> |
| </td> |
| </tr> |
| <tr> |
| <td valign="bottom" colspan="3"> |
| <telerik:RadMenu ID="radMenu_1" runat="server" Width="100%" Flow="Horizontal" CollapseAnimation-Type="InQuart" > |
| </telerik:RadMenu> |
| </td> |
| </tr> |
| </table> |
| </td> |
| </tr> |
| </tbody> |
| </table> |
| </td> |
| </tr> |
| </table> |
| <input id="txtVisibleText" type="hidden" value="visible" name="txtVisibleText" runat="server" /> |
| $(document).ready( function() {
|
| var functionComboboxes = $("* [id$='cmbFunction']"); |
| functionComboboxes.each(function() { |
| var comboBoxId = $(this).attr('id'); |
| var comboBox = $find(comboBoxId); |
| FilterIdentification(comboBox); |
| }); |
| }); |
Hi, I have RadGrind 2009 Q1 with 4 levels of hierarchy. The GridTableView #3 is driven by a stored procedure that does own logic and routs select from different tables. Consequentially dataset for the level # 3 will have different columns for each row level # 2. The GridTableView #3 has AutoGenerateColumns="true".
Now, the problem that I have is that the RadGrid looks like stick to the columns headers of the first expended row at the level #3. The data (amount of rows) does come from the stored procedure proporly but the headers and the DataField for the AutoGenerateed Columns does not get overridden dynamically.
Could you help p me to address this problem?