Telerik Forums
UI for ASP.NET AJAX Forum
6 answers
304 views
Hello !

Do you think to add in the near future a carousel control to Asp.net ?

Regards
Mihai
Larevenge
Top achievements
Rank 1
 answered on 19 Mar 2010
2 answers
229 views
Hi all,
i have a problem with MasterPage and AjaxManager, this trivial example works with VS2008 but con VS2010 framework 4.0 reports an error and
I can not use the RadAjaxManager with the setting in a MasterPage.
PS) This sample is in a Help CHM: MasterPages: ajaxify and update controls in master and content page.
With Framework 3.5 work fine (Telerik Version 2010.1.309.35  RunTime:v2.0.50727)

Master Page:
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage.master.cs" Inherits="RadControlsWebApp1.MasterPage" %> 
 
<!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></title
    <asp:ContentPlaceHolder ID="head" runat="server"
    </asp:ContentPlaceHolder> 
</head> 
<body> 
    <form id="form1" runat="server"
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server"
        <Scripts> 
            <%--Needed for JavaScript IntelliSense in VS2010--%> 
            <%--For VS2008 replace RadScriptManager with ScriptManager--%> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" /> 
        </Scripts> 
    </telerik:RadScriptManager> 
    <script type="text/javascript"
        //Put your Java Script code here. 
    </script> 
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
        <AjaxSettings> 
            <telerik:AjaxSetting AjaxControlID="btnDecrease"
                <UpdatedControls> 
                    <telerik:AjaxUpdatedControl ControlID="TextBox1" /> 
                </UpdatedControls> 
            </telerik:AjaxSetting> 
        </AjaxSettings> 
         
    </telerik:RadAjaxManager> 
  
    <telerik:RadSkinManager ID="RadSkinManager1" Runat="server" Skin="Office2007"
    </telerik:RadSkinManager> 
    <div> 
    <asp:LinkButton ID="btnDecrease" runat="server" OnClick="btnDecrease_Click">Decrease</asp:LinkButton> 
<asp:TextBox ID="TextBox1" runat="server">0</asp:TextBox> 
 
        <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"
         
        </asp:ContentPlaceHolder> 
    </div> 
    </form> 
</body> 
</html> 

ContentPage:
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.Master" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="RadControlsWebApp1.WebForm1" %> 
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"
</asp:Content> 
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"
</asp:Content> 

This is the Javascript error:

  'get_postBackElement().id' è nullo o non è un oggetto  Telerik.Web.UI.WebResource.axd?_TSM_HiddenField_=RadScriptManager1_TSM&compress=1&_TSM_CombinedScripts_=%3b%3bSystem.Web.Extensions%2c+Version%3d4.0.0.0%2c+Culture%3dneutral%2c+PublicKeyToken%3d31bf3856ad364e35%3ait-IT%3a00000000-0000-0000-0000-000000000000%3aea597d4b%3ab25378d2%3bTelerik.Web.UI%3ait-IT%3aa491094c-5dfe-45a9-a72f-e5f5f0640d11%3a16e4e7cd%3af7645509%3a22a6274a%3aed16cbdc, Riga 1054 Carattere 1

If I hide hte AjaxSetting it works but is obviously made the postback the entire page:
<%@ Master Language="C#" AutoEventWireup="true" CodeBehind="MasterPage.master.cs" Inherits="RadControlsWebApp1.MasterPage" %> 
 
<!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></title
    <asp:ContentPlaceHolder ID="head" runat="server"
    </asp:ContentPlaceHolder> 
</head> 
<body> 
    <form id="form1" runat="server"
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server"
        <Scripts> 
            <%--Needed for JavaScript IntelliSense in VS2010--%> 
            <%--For VS2008 replace RadScriptManager with ScriptManager--%> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.Core.js" /> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQuery.js" /> 
            <asp:ScriptReference Assembly="Telerik.Web.UI" Name="Telerik.Web.UI.Common.jQueryInclude.js" /> 
        </Scripts> 
    </telerik:RadScriptManager> 
    <script type="text/javascript"
        //Put your Java Script code here. 
    </script> 
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"
         
    </telerik:RadAjaxManager> 
  
    <telerik:RadSkinManager ID="RadSkinManager1" Runat="server" Skin="Office2007"
    </telerik:RadSkinManager> 
    <div> 
    <asp:LinkButton ID="btnDecrease" runat="server" OnClick="btnDecrease_Click">Decrease</asp:LinkButton> 
<asp:TextBox ID="TextBox1" runat="server">0</asp:TextBox> 
 
        <asp:ContentPlaceHolder ID="ContentPlaceHolder1" runat="server"
         
        </asp:ContentPlaceHolder> 
    </div> 
    </form> 
</body> 
</html> 

I use the versione of ASP.NET AJAX 2010 Q1 2010.1.309.40 RunTime:v4.0.30128
Tnks Aurelio
Aurelio Righetti
Top achievements
Rank 1
 answered on 19 Mar 2010
1 answer
91 views
Hi,
    I'm using Telerik version 2009.31208.20. I have created an asp:button decorated with the Telerik RadFormDecorator. The button works well in IE (all version after IE 6), FireFox 3.x, Chrome and Safari. Although, in Firefox 2.x, the button click is not firing and its border is cut off.
 The problem occurs only when i set the button decorated with the RadFormDecorator.
here the source code:
<telerik:RadFormDecorator ID="FormDecorator1" runat="server" DecoratedControls="All"     
        Skin="WebBlue"></telerik:RadFormDecorator>       
     
 <asp:Button ID="LoginButton" ValidationGroup="login"    
      runat="server" CommandName="Login" Width="120px"       
      Text="<%$ Resources:Labels, LoginLoginButton %>" />  

Thanks.
Mounir,
Georgi Tunev
Telerik team
 answered on 19 Mar 2010
5 answers
300 views
hi,
i got following problem:  if i click on linkbutton the radconfirm popups, but it closes immediatly and then the server code will be executed without confirmation.

<asp:LinkButton ID="btnDelete" Visible="false" runat="server" CausesValidation="False" 
                    CssClass="DeleteButton" OnClick="btnDelete_Click" OnClientClick="return radconfirm('Möchten Sie wirklich löschen')" 
                    Text="Löschen"></asp:LinkButton> 

Any idea, why it closes immediatly?
Georgi Tunev
Telerik team
 answered on 19 Mar 2010
1 answer
166 views
I get "the Operation could not be completed. Invalid FORMATEC structure" error when I try to add a control from the new controls (2010) package. Please, see the screen shot attached.
Veselin Vasilev
Telerik team
 answered on 19 Mar 2010
2 answers
164 views
Hi,

I want to provide  a confirmation dialog box in an edit mode, when the "update" on a row of a grid is clicked ?

Can anybody suggest ways of doing the same?

Thanks
Phani Musale
Top achievements
Rank 1
 answered on 19 Mar 2010
1 answer
532 views
Hi there,

I am using telerik rad text box, Here i am facing one problem. I have to apply auto complete, which works fine with text box, but i wanna to apply it with multiline text box. But it's not working for multiline text box.  The Code i have used is given below.
<telerik:RadTextBox ID="radtxtFrom" AutoCompleteType="FirstName" runat="server" Skin="Web20" 
                            Width="700px" Height="30px" TextMode="MultiLine" /> 
Can any body is there, who can pull my hand to come out of this problem..??

Regards,
Vimal kumar srivastava
Madhepura, Bihar
robertw102
Top achievements
Rank 1
 answered on 19 Mar 2010
3 answers
107 views
I have a page that is opened in a RadWindow. The page contains a TabStrip with 6 tabs. Each tab contains contents of different heights. Is there a way to resize the RadWindow  when clicking between the tabs so that it matches the contents in the tab pages?
Yana
Telerik team
 answered on 19 Mar 2010
1 answer
164 views
combobox selected text readonly....
combobox selected text readonly....

please..............................help me.. telerik team!!!

♡ i love telerik ♡
Simon
Telerik team
 answered on 19 Mar 2010
1 answer
61 views
Hi

I have a grid which can have 100 rows. If the user clicks the last row or one towards the bottom of the grid, the grid bumps up to the top of the page. The user has to scroll to the bottom of the grid to see the selected row. Is there a way to prevent the grid from jumping back to the top without enabling scrolling. I don't want to add scroll bars to the gird for UI reasons. Kindly let me know if this can be done client side. Currently i can set focus to the row clicked using onRowClick event but that aligns selected row with the bottom of the page instead of being centering the row. 
Radoslav
Telerik team
 answered on 19 Mar 2010
Narrow your results
Selected tags
Tags
+? more
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Rakhee
Top achievements
Rank 1
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?