<
telerik:GridTemplateColumn HeaderText="Employer/Title" UniqueName="Employer" HeaderStyle-Width="14%"
DataField="Employer" CurrentFilterFunction="StartsWith"
AutoPostBackOnFilter="true">
<ItemTemplate>
<b>
<%
# Eval("Employer")%></b>
<br />
<%
# Eval("JobTitle")%>
</ItemTemplate>
</telerik:GridTemplateColumn>
Posted 0 minutes ago (permalink)
<telerik:RadAjaxPanel ID="XmlViewPanel" runat="server" Height="200px" Width="300px">
<asp:Xml ID="xmlView" runat="server"></asp:Xml>
</telerik:RadAjaxPanel>
I also have a RadTreeView that uses LoadOnDemand (TreeNodeExpandMode.ServerSideCallBack) and when the clicks a treeview node that has no children, some xml is loaded into the component, as below:
xmlView.DocumentContent = "<?xml version=\"1.0\" encoding=\"utf-8\"?><root>" + node.InnerXml + "</root>";
How do I get the RadAjaxPanel to update its client Xml component, and cause the xml text to appear?
An example would be great. Thanks
Chris
This is a test project with a problem in Telerik components
In the "default.aspx", a button and a modal window, clicking on the button shows the modal window “popup.aspx”; that has a date picker
Clicking on the view calendar button of the date picker doesn’t show the calendar! Instead it shows the layer under the modal window
This problem with IE only (at least IE7 I’m using), working perfectly with Firefox, Safari, and Chrome
I'm using Telerik 2009 Q1
Default.aspx:
<%
@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<title>Test</title>
<script language="javascript" type="text/javascript">
function windowOpen() {
var oWnd = radopen("Popup.aspx", "windowModal");
oWnd.center();
}
</script>
</
head>
<
body bgcolor="yellow">
<form id="form1" runat="server">
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" />
<div>
<input type="button" value="open" runat="server" id="btnOpen" onclick="javascript:windowOpen();" />
<telerik:RadWindowManager ID="windowManagerModal" runat="server" Skin="Black">
<Windows>
<telerik:RadWindow ID="windowModal" runat="server" ShowContentDuringLoad="true" Behaviors="Close" VisibleStatusbar="false"
Animation="FlyIn" Width="700px" Height="700px" Modal="true" Title="Popup">
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
</div>
</form>
</
body>
</
html>
Popup.aspx:
<%
@ Page Language="C#" AutoEventWireup="true" CodeFile="Popup.aspx.cs" Inherits="Popup" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
<title>Popup</title>
</
head>
<
body>
<form id="form1" runat="server">
<div>
<telerik:RadScriptManager ID="RadScriptManager1" runat="server" />
<telerik:RadDatePicker ID="RadDatePicker1" runat="server" Skin="Black">
<Calendar UseRowHeadersAsSelectors="False" UseColumnHeadersAsSelectors="False"
ViewSelectorText="x" Skin="Black" runat="server"></Calendar>
<DatePopupButton ImageUrl="" HoverImageUrl=""></DatePopupButton>
</telerik:RadDatePicker>
</div>
</form>
</
body>
</
html>
Any Help?