<telerik:RadComboBox ID="cboaction_cat_id" runat="server" Width="350px" Height="200px" EmptyMessage="Select a Action Category" MarkFirstMatch="true" DataTextField ="action_category_id" DataValueField="action_category_id" EnableLoadOnDemand="True" OnSelectedIndexChanged="cboAction_SelectedIndexChanged" ShowMoreResultsBox="true" EnableVirtualScrolling="true" AutoPostBack="true" OnDataBound="RadComboBox2_DataBound" OnItemDataBound="RadComboBox2_ItemDataBound" OnItemsRequested="RadComboBox2_ItemsRequested" OnClientItemsRequested="UpdateItemCountField" HighlightTemplatedItems="true" > <HeaderTemplate> <ul> <li class="col1">Action Cat ID</li> <li class="col2">Action Cat Desc</li> </ul> </HeaderTemplate> <ItemTemplate> <ul> <li class="col1"> <%# DataBinder.Eval(Container.DataItem, "action_category_id")%></li> <li class="col2"> <%# DataBinder.Eval(Container.DataItem, "action_category_desc")%></li> </ul> </ItemTemplate> <FooterTemplate> A total of <asp:Literal runat="server" ID="Literal1" /> items </FooterTemplate> </telerik:RadComboBox>BaseChart.PlotArea.YAxis.AxisLabel.Visible = true;BaseChart.PlotArea.YAxis.AxisLabel.Appearance.RotationAngle = 360;BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.Auto = false;BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.AlignedPosition = Telerik.Charting.Styles.AlignedPositions.None;BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.X = 20;BaseChart.PlotArea.YAxis.AxisLabel.Appearance.Position.Y = -30;Hi,
Here’s the code:
<div>
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" ShowContentDuringLoad="true" >
<Windows>
<telerik:RadWindow ID="RadWindow1" runat="server" Behaviors="Close,Minimize,Move,Resize,Maximize" Modal="true" Skin="Office2007" Title="NewPage" >
<ContentTemplate>
Here's the text for Modal window!
</ContentTemplate>
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
<br />
<input type="button" value="click Here" onclick="openRadWindow();" />
<script type="text/javascript">
function openRadWindow() {
var rwManager = $find("<%= RadWindowManager1.ClientID %>");
var rwindow = rwManager.Open("", "RadWindow1");
rwindow.center();
return false;
}
</script>
</div>
I’m using $find() to grab the Window Manager as this section is in a user control and the container page also has a RadWindowManager.
When I click on the button, the RadWindow shows up including the title but - anything inside the Content template does not show in the window.
Am I missing something?
Also, I wonder if the content template is specific to Q3-2009 release as we haven’t updated to that version yet.
Any help pointer will be great appreciated.
