I hope I'm just missing something. :)
I cannot, through the design view, append content to the very end of what is there - unless there is a <br> at the end. I can switch to HTML view, but I don't always want to provide the HTML view for my non-web-savvy clients.
Example: If I have code in the editor like this:
| <div> |
| <p>....</p> |
| <p>....</p> |
| <p>....</p> |
| </div> |
I can't append anything from HTML view without it appearing inside the div tag.
Thanks for any assistance.

<%
@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%
@ Register Src="ProductDetails.ascx" TagName="ProductDetails" TagPrefix="uc1" %>
<%
@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
<!
DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head runat="server">
</
head>
<
body>
<form id="form1" runat="server">
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<div>
</div>
<telerik:RadPanelBar runat="server" ID="RadPanelBar1" Skin="Hay" Height="300px">
<Items>
<telerik:RadPanelItem Expanded="True" Text="ASP.NET controls">
<ItemTemplate>
<asp:CheckBoxList ID="CheckBoxList1" runat="server" RepeatColumns="2"
RepeatDirection="Horizontal" Width="92px">
<asp:ListItem>Monday</asp:ListItem>
<asp:ListItem>Tuesday</asp:ListItem>
<asp:ListItem>Wednesday</asp:ListItem>
<asp:ListItem>Thursday</asp:ListItem>
<asp:ListItem>Friday</asp:ListItem>
<asp:ListItem></asp:ListItem>
</asp:CheckBoxList>
</ItemTemplate>
</telerik:RadPanelItem>
<telerik:RadPanelItem Text="WinForms controls">
<Items>
<telerik:RadPanelItem Text="RadMenustrip">
</telerik:RadPanelItem>
<telerik:RadPanelItem Text="RadTabStrip">
</telerik:RadPanelItem>
<telerik:RadPanelItem Text="RadToolStrip">
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelItem>
<telerik:RadPanelItem Text="Other projects">
<Items>
<telerik:RadPanelItem Text="SiteFinity">
</telerik:RadPanelItem>
<telerik:RadPanelItem Text="Reporting">
</telerik:RadPanelItem>
<telerik:RadPanelItem Text="RadAjax">
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelItem>
</Items>
</telerik:RadPanelBar>
</form>
</
body>
</
html>
| protected void Page_Load(object sender, EventArgs e) |
| { |
| if (RCBFrequencesUserControl.Items.Count == 0) |
| { |
| RCBFrequencesUserControl.DataSource = Params.GetFrequence(webUtility.getConnectedUser()); |
| RCBFrequencesUserControl.DataTextField = "libelle"; |
| RCBFrequencesUserControl.DataValueField = "idfrequence"; |
| RCBFrequencesUserControl.DataBind(); |
| RCBFrequences.SelectedValue = "134"; |
| } |
| } |
I have two ContentPlaceHolders on my page. first Have a TreeView on it and Second have a DataList on it.
I Populate my TreeView on Demand (and Expand property of each node has been set to ServerSideCallBack)
Now i want if user clicks on any of the Leaf node (In my case it's at Level 4) the Data List on Second Content Place Holder Should be Refreshed (only on the click of Leaf node.)
I can't set the TreeView's AutoPostBack Property to TRUE Because i dont want any postbacks when user expand the Nodes or click the nodes.
Any Suggesions
using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using Telerik.Web.UI;
public partial class Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
CreateRadWindow();
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = DateTime.Now.ToString();
}
private void CreateRadWindow()
{
RadWindow RadWindow1 = new RadWindow();
RadWindow1.ID = "RadWindow1";
RadWindow1.Behaviors = WindowBehaviors.Close | WindowBehaviors.Maximize | WindowBehaviors.Move | WindowBehaviors.Resize;
RadWindow1.Title = "Title";
RadWindow1.NavigateUrl = "http://www.google.com/";
RadWindow1.Skin = "Vista";
RadWindow1.OpenerElementID = Button1.ClientID;
RadWindow1.ReloadOnShow = true;
RadWindow1.Height = new Unit(480, UnitType.Pixel);
RadWindow1.Width = new Unit(640, UnitType.Pixel);
RadWindow1.Modal = true;
RadWindow1.DestroyOnClose = true;
RadWindowManager1.Windows.Add(RadWindow1);
}
}


Dim dlgEditRule As New DialogDefinition("Dialogs/dlgEditRule.ascx", New DialogParameters())
With dlgEditRule
.Modal =
True
.VisibleTitlebar =
True
.VisibleStatusbar =
False
.Title =
"<font size=""2""><b>Edit Rules</b></font>"
.Width = Unit.Pixel(576)
.Height = Unit.Pixel(500)
End With
.AddDialogDefinition(
"TP_EditRule", dlgEditRule)
In the code behind we don't have the option to set the ReloadOnShow property, is there a way to do this?
Thanks
David

<
link href="/Menu.test.css" rel="stylesheet" type="text/css" />
in the master page.
is there any other way that the control can refer the correct skin based on the Skin value specified in the control.
Regards
Sujith