function
TreeViewBeforeClick(nodo)
{
nodo.expand();
var nodeDIV = document.getElementById(nodo.ClientID);
var link = nodeDIV.getElementsByTagName("A");
...

Hi.
I have added my "own" paragraphs in the Toolsfile.xml like this:(after the tools section)
<paragraphs>
<paragraph name="Clear formatting" value="<body>" />
<paragraph name="<H1>Heading 1</H1>" value="<H1>" />
<paragraph name="<H2>Heading 2</H2>" value="<H2>" />
<paragraph name="<H3>Heading 3</H3>" value="<H3>" />
<paragraph name="<H4>Heading 4</H4>" value="<H4>" />
<paragraph name="<H5>Heading 5</H5>" value="<H5>" />
<paragraph name="<H6>Heading 6</H6>" value="<H6>" />
</paragraphs>
Selecting Heading 1-6 works just fine, but not the "clear formatting" one. Any idea what I am doing wrong here?
Sometimes I've been able to get an error trying to select it (not always):
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; WOW64; Trident/4.0; SLCC1; .NET CLR 2.0.50727; .NET CLR 3.5.21022; .NET CLR 3.5.30729; .NET CLR 3.0.30618; InfoPath.2; MS-RTC EA 2)
Timestamp: Mon, 4 May 2009 13:37:23 UTC
Message: 'this.get_document().body' is null or not an object
Line: 8774
Char: 1
Code: 0
URI: http://tsipdev2/ScriptResource.axd?d=6X5KGxhvs4STRm41XlJ9nMALA_QnYSK1BQdP6vGxNMid8UKZc73YFS9lJ-kDseEu7yjqAJg5J655lMgPgoiBCcqPkTFmZ79OHA69tHHgkc0JkkEULpPjMBnH3wfbzs2r0&t=ffffffffa52cf09d
I just converted my project to .Net 3.5, works fine form vs2008 but when I deployed to the test environment I get 'Sys' undefined error on every page I use the Telerik controls. Any idea what are I am missing?
Ahmed.
<%
@ Register Tagprefix="radE" Namespace="Telerik.SharePoint" Assembly="RadEditorSharePoint, Version=5.4.0.0, Culture=neutral, PublicKeyToken=1f131a624888eeed" %>
<radE:MOSSRadEditor ID="RuimteBetalendeIntegraties" runat="server" Content='<%#DataBinder.Eval(adapter,"Product.RuimteBetalendeIntegraties")%>' Visible="false" ControlMode="Edit">
</radE:MOSSRadEditor>
<%
--<SharePoint:InputFormTextBox ID="RuimteBetalendeIntegraties" Text='<%#DataBinder.Eval(adapter,"Product.RuimteBetalendeIntegraties")%>'
runat="server" TextMode="MultiLine" Rows='<%#richtTextRows%>' Columns="40" RichText="true"
RichTextMode="FullHtml" AllowHyperlink="true" Visible="false" />
<SharePoint:InputFormTextBox ID="ReRuns" Text='<%#DataBinder.Eval(adapter,"Product.ReRuns")%>'
runat="server" TextMode="MultiLine" Rows='<%#richtTextRows%>' Columns="40" RichText="true"
RichTextMode="FullHtml" AllowHyperlink="true" Visible="false" />--
%>
I am uploading images to a database and only want to show a hyperlink if an image was uploaded.
If a user does not upload a file to the database, I write a null to the "FileBytes" field and in the stored procedure code check for nulls. If a null is found, then I don't update the FileBytes field. This works ok for files already uploaded but if no file has been uploaded, then i get an error when the user click the hypelink in the grid.
In my aspx page i have the following markup inside a Grid:
........
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="Image" UniqueName="Upload">
<ItemTemplate>
<a href="#" onclick='ShowImage("<%# Eval("UID") %>");return false;'>
<asp:Image runat="server" ID="ImageThumbnail" AlternateText="Click here to open the real size image"
ImageUrl='<%# "showimagecs.aspx?thumbnail=true&ID=" + Eval("UID")%>' Style="border-width: 0px;" />
</a>
</ItemTemplate>
</telerik:GridTemplateColumn>
........