Telerik Forums
UI for ASP.NET AJAX Forum
7 answers
267 views
I had radEditor working fine (the latest version) on my site, then I upgraded to DNN 5.0 and now I get the following error:

A critical error has occurred.
The control with ID 'RadEditorDNN' requires a ScriptManager on the page. The ScriptManager must appear before any controls that need it.

Where would I put the ScriptManager tag in DNN?



Lini
Telerik team
 answered on 07 Jan 2009
1 answer
107 views
I'd like to setup my RadRotator with no animation.  If it's time to show the next slide I just want it to appear, without a transition animation.  I've tried setting the animation type to none, but there's no effect.  Is it possible to have a RadRotator with no animation?
Fiko
Telerik team
 answered on 07 Jan 2009
1 answer
93 views
I have a xml data source linked to an xml file with contents for 8 images. The rotator always stops at the 2nd last image.
My setting are:

Type: AutoAdvance
Direction: Left
FrameDuration= 8000
and ScrollDuration=500

                            <ItemTemplate>
                                <asp:Image ID="Image1" runat="server" ImageUrl='<%# XPath("ImageUrl") %>'  ToolTip='<%# XPath("AlternateText") %>'/>
                            </ItemTemplate>

XML File:
<?xml version="1.0" encoding="utf-8" ?>
<Ads>
<ad>
    <ImageUrl>~/Images/ad1.gif</ImageUrl>
    <AlternateText>1st Ad</AlternateText>
    <Keyword>1st Ad</Keyword>    
  </ad>
  <ad>
    <ImageUrl>~/Images/ad2.gif</ImageUrl>
    <AlternateText>2nd Ad</AlternateText>
    <Keyword>2nd Ad</Keyword>
    <Impressions>50</Impressions>
  </ad>
....
....
...
</Ads>

Please help!

Thanks,
Sayak

Fiko
Telerik team
 answered on 07 Jan 2009
2 answers
162 views
Hello,
I'm trying to mimic the Accordion from the AJAX Toolkit using the Panel bar.  I would like to use the xml file I used with the Accordian with the PanelBar but i'm not sure how my XML should lay out.

My current xml layout is
<?xml version="1.0" encoding="utf-8" ?> 
<Sitemap> 
  <Item name="LOGIN" id="apnLOGIN">  
    <SubItem name="Login" url="login.aspx"></SubItem>      
  </Item> 
  <Item name="SYSTEM SETUP" id="apnSETUP">  
    <SubItem name="Setup 1" url="Setup1.aspx"></SubItem> 
    <SubItem name="Setup 2" url="Setup2.aspx"></SubItem> 
    <SubItem name="Setup 3" url="Setup3.aspx"></SubItem> 
  </Item> 
  <Item name="DATA EDIT" id="apnEDITDATA">  
    <SubItem name="Edit Data 1" url="EditData1.aspx"></SubItem> 
    <SubItem name="Edit Data 2" url="EditData2.aspx"></SubItem> 
    <SubItem name="Edit Data 3" url="EditData3.aspx"></SubItem> 
  </Item> 
  <Item name="ID MANAGEMENT" id="apnMANAGEMENT">  
    <SubItem name="Sample ID" url="EditDate4.aspx"></SubItem>      
  </Item> 
  <Item name="HELP" id="apnHELP">  
    <SubItem name="HELP" url="Help.aspx"></SubItem>      
  </Item> 
</Sitemap> 

I want the Item lines to be the panel bar headers and when you click that bar you see the subitems displayed below.
Is this possible or do I have to change my layout?

Thank You
Jerry
jerry
Top achievements
Rank 1
 answered on 07 Jan 2009
2 answers
108 views
I am trying to upgrade a site to the latest version of Telerik and am running into a strange problem.  I went through my code and *think* I have found all references to the old telerik controls.  I removed all .dlls from my bin and added a reference to the telerik.web.ui, so I now have a telerik.web.ui.dll and telerik.web.ui.xml.  It builds with no errors, however, everytime I build it, all of the old .dlls come back.  I am using Source Safe if that makes any difference, though I checked out the whole project when I made the above changes.  Any ideas?
TPerry
Top achievements
Rank 1
 answered on 07 Jan 2009
5 answers
173 views
I'm having trouble with the rad menu in the latest sitefinity (3.5 sp1) where the links are not correctly escaping the ampersand (&) symbols in my link text. Take a look here: http://www.mcallen.net/golf/home.aspx. the menu up at the top under driving range (Fees & Memberships) and Contact Us (Maps & Directions) have ampersands, but they are not escaped to &amp; by the menu. I tried manually chaning the link text and putting the full escaped text myself, but it still shows up as &.

can someone tell me what I'm doing wrong?

thanks!
SelAromDotNet
Top achievements
Rank 2
 answered on 07 Jan 2009
1 answer
78 views

I tried to look at the demo for the different animation styles for RadComboBox, but the link seems to be broken, as the message "Sorry, we couldn't find the page you're looking for." is all I get.  Can anyone point me to a working demo page for the animations so that I don't have to code them all myself to see what they look like?

Thanks,
Peter
Paul
Telerik team
 answered on 07 Jan 2009
4 answers
242 views
Hi,

For our RadTreeView we have an "Delete" option in the context menu, for a given node. Upon clicking on this, we want a confirmation to appear i.e. "Are you sure you want to delete this node? Ok/Cancel". If the user selects OK, the data associated with this node will be deleted from the database, and the TreeView will be databinded again. However, if the user selects "Cancel", we don't want a post-back to occur. We have implemented the confirmation with a client side javascript function attached to the OnClientContextMenuItemClicked event, which then calls confirm() etc. How can we then get the TreeView to databind again?

Thanks
-Connor
Connor
Top achievements
Rank 1
 answered on 07 Jan 2009
1 answer
158 views

I have two ToolTipManager Controls that display a Templated Tooltip for two columns inside a RadGrid that

I have on a page. These Templated tooltips load two different user controls on demand. I also have lots of

controls with just plain text tooltips (not using any Telerik controls to display these).

When the RadGrid which contains the two columns has rows then all the Tooltips are displayed just fine.

But the moment that Grid does not have any rows or is hidden, then the Tooltip Manager causes problems

with any control that has a Tooltip property set.

This is what happens: When you hover over any control on the page that has a tooltip, (whether you use

Telerik Tooltip controls to display the tooltip or not) a blank toolip with manual close button and the

same skin as my templated tooltip gets displayed along with a spinning wheel instead of displaying plain

text tooltip. This should not happen as these controls  were never registered with Tooltip controls. This

is both annoying and confusing.

So far, I tried the following but both failed:
1) Tried to disable the Tooltip manager controls when there are no rows in RadGrid - This didn't work. I

saw the same behavior.
2) Tried to set the visible property of the tooltip manager on the server side when there are no rows in

RadGrid - while it works ok I often get this exception (because of which I can't use this solution):

Script control 'xxxToolTipManager' is not a registered script control. Script controls must be registered

using RegisterScriptControl() before calling RegisterScriptDescriptors().

Parameter name: scriptControl

Can someone help fix this? I appriciate your help!

Svetlina Anati
Telerik team
 answered on 07 Jan 2009
1 answer
117 views
Hi,
I have a RadGrid (CustomGrid which is inherited from RadGrid) in a content page, which I define like so:

<ref:CustomGrid ID="entityGrid" runat=server onneeddatasource="entityGrid_NeedDataSource"   
                    onupdatecommand="entityGrid_UpdateCommand"  Width="100%"   
                    onitemcreated="entityGrid_ItemCreated" 
                    onitemdatabound="entityGrid_ItemDataBound"  > 
                      <ClientSettings  Selecting-EnableDragToSelectRows="false"  > 
          <Scrolling UseStaticHeaders="true" AllowScroll="true" ScrollHeight="100px" /> 
          </ClientSettings> 
                    </ref:CustomGrid> 

I had a little problem with the alignment of the header and data rows, which I already fixed through css adjustments.
My current problem is that when I open a javascript pop up (for example using RadWindow or a simple alert()) the Grid's layout is all messed up (the header row shifts to the right with no connection to data rows).

Did you encounter this sort od problem before?
is there any property in the css I should look at?


Thanx in advance for your quick response,
Revital
Sebastian
Telerik team
 answered on 07 Jan 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Shiori
Top achievements
Rank 2
Iron
Tien
Top achievements
Rank 1
Iron
Robert
Top achievements
Rank 1
Rob
Top achievements
Rank 4
Bronze
Bronze
Iron
Geoff
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?