Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
94 views
Hi,

anyone has idea on how to show loading panel initially on page load?

thanks
Princy
Top achievements
Rank 2
 answered on 20 Oct 2009
1 answer
112 views
Hi,

I got a situation with nested Ajax Managers (I use Manager Proxy in nested one). Main Manager sets ajax request to RadGrid, and in this grid in edit form I got drop down with AutoPostBack, on which other drop down is updated - it works perfect, but it updates whole Grid.
So I decided to add AjaxManagerProxy in this form and set it for this DropDown, but when I check in FireBug it looks like whole Grid is updated anyway. It's way to much data to be send and receive for only one DropDown.
Is there some nice solution to minify bandwidth in such a case?

Gr,
Pawel

sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 20 Oct 2009
1 answer
110 views
I have a RadGrid on which resides a GridBoundColumn. And i display values of type decimal(10,4) on them. What i wantto to do is to display them as -for instance- 4.00 raher them 4.0000(since it field in tha table is decimal(10,4) the values are displayed as   4.0000 ). How can i do that?

Here is html of RadBoundGrid:  

 

<telerik:GridBoundColumn DataField="Yuzde" DataType="System.Decimal"   
            HeaderText="Yüzde" SortExpression="Yuzde" UniqueName="Yuzde" AllowFiltering = "false">  
         <ItemStyle Width="10px" ></ItemStyle>  
        </telerik:GridBoundColumn> 

I tried changind DataType="System.Decimal" to System.Double. It didn't work. 

 

 

sitefinitysteve
Top achievements
Rank 2
Iron
Iron
Veteran
 answered on 20 Oct 2009
1 answer
132 views
The font sizes in my TreeView get larger with each level, and they look awful. Here is my declaration:
<telerik:RadTreeView ID="tvDocuments" runat="server" EnableDragAndDrop="True" EnableDragAndDropBetweenNodes="True" 
    CheckChildNodes="True" OnNodeClick="tvDocuments_NodeClick" OnContextMenuItemClick="tvDocuments_ContextMenuItemClick" 
    Skin="Default">  
    <ContextMenus> 
        <telerik:RadTreeViewContextMenu ID="LeafMenu" runat="server" ToolTip="Click to open, Right click to edit">  
            <Items> 
                <telerik:RadMenuItem runat="server" Text="Open" /> 
                <telerik:RadMenuItem runat="server" Text="Delete" /> 
                <telerik:RadMenuItem runat="server" Text="Edit" /> 
                <telerik:RadMenuItem runat="server" Text="New Folder" /> 
            </Items> 
        </telerik:RadTreeViewContextMenu> 
    </ContextMenus> 
</telerik:RadTreeView> 
 
How do I make all of the fonts the same size?

I can change the theme and the color/icon for each node changes as well as the background color when I highlight a node, but the fonts are not affected by the theme.
Schlurk
Top achievements
Rank 2
 answered on 19 Oct 2009
2 answers
259 views
I have a sign up form with validation. Everything validates except the captcha. Here is my web.config, which I think is configured correctly. I have no idea why this wont work. Also my page uses a master page which has the telerik:RadScriptManager.


<?xml version="1.0"?>
<!--
    Note: As an alternative to hand editing this file you can use the
    web admin tool to configure settings for your application. Use
    the Website->Asp.Net Configuration option in Visual Studio.
    A full list of settings and comments can be found in
    machine.config.comments usually located in
    \Windows\Microsoft.Net\Framework\v2.x\Config
-->
<configuration>
    <configSections>
        <section name="dataConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings, Microsoft.Practices.EnterpriseLibrary.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
        <sectionGroup name="system.web.extensions" type="System.Web.Configuration.SystemWebExtensionsSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
            <sectionGroup name="scripting" type="System.Web.Configuration.ScriptingSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
                <section name="scriptResourceHandler" type="System.Web.Configuration.ScriptingScriptResourceHandlerSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
                <sectionGroup name="webServices" type="System.Web.Configuration.ScriptingWebServicesSectionGroup, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
                    <section name="jsonSerialization" type="System.Web.Configuration.ScriptingJsonSerializationSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="Everywhere"/>
                    <section name="profileService" type="System.Web.Configuration.ScriptingProfileServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
                    <section name="authenticationService" type="System.Web.Configuration.ScriptingAuthenticationServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
                    <section name="roleService" type="System.Web.Configuration.ScriptingRoleServiceSection, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" allowDefinition="MachineToApplication"/>
                </sectionGroup>
            </sectionGroup>
        </sectionGroup>
    </configSections>
    <dataConfiguration defaultDatabase="xxxxxxxxxxxxxxxxxxxxxxxx"/>

    <appSettings>
 
    </appSettings>
    <system.web>
        <!--
            Set compilation debug="true" to insert debugging
            symbols into the compiled page. Because this
            affects performance, set this value to true only
            during development.
        -->
        <httpHandlers>
            <remove path="*.asmx" verb="*"/>
            
            <add path="*.asmx" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>
            <add path="*_AppService.axd" verb="*" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>
            <add path="ScriptResource.axd" verb="GET,HEAD" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" validate="false"/>
            <add path="ChartImage.axd" verb="*" type="Telerik.Web.UI.ChartHttpHandler, Telerik.Web.UI, Version=2009.02.0826.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
            <add path="Telerik.Web.UI.DialogHandler.aspx" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2009.02.0826.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
            <add path="Telerik.Web.UI.SpellCheckHandler.axd" verb="*" type="Telerik.Web.UI.SpellCheckHandler, Telerik.Web.UI, Version=2009.02.0826.20, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false"/>
            <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.CaptchaImageHandler" verb="*" validate="false" />
            <add path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" validate="false" />
            
        </httpHandlers>
        <!-- roles    -->
        <roleManager enabled="true" defaultProvider="SqlRoleManager">
            <providers>
                <add name="SqlRoleManager" type="System.Web.Security.SqlRoleProvider" connectionStringName="x" applicationName="/"/>
            </providers>
        </roleManager>
        <compilation debug="true">
            <assemblies>
                <add assembly="System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Security, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Management, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Transactions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Data.OracleClient, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.EnterpriseServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Configuration.Install, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
                <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add assembly="System.Xml.Linq, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Data.DataSetExtensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
                <add assembly="System.Web.Extensions.Design, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add assembly="System.Drawing.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/>
            </assemblies>
        </compilation>
        <!--
            The <authentication> section enables configuration
            of the security authentication mode used by
            ASP.NET to identify an incoming user.
        -->
        <pages>
            <controls>
                <add namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" tagPrefix="telerik"/>
                <add tagPrefix="asp" namespace="System.Web.UI" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
                <add namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" tagPrefix="ajaxToolkit"/>
                <add tagPrefix="asp" namespace="System.Web.UI.WebControls" assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></controls>
        </pages>
        <httpModules>
            <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        </httpModules>
        <authentication mode="Forms">
            <forms loginUrl="Login.aspx" protection="Validation" timeout="300"/>
        </authentication>
        <!--<httpCookies domain="impactwrestling.com" requireSSL="false"/> domain="xx" name=".ASPXFORMSAUTH"
         Encryption keys for forms authentication ticket. This ensures tickets remain consistent
    between multiple servers or multiple web applications.-->
 

        <!-- The <customErrors> section enables configuration
            of what to do if/when an unhandled error occurs
            during the execution of a request. Specifically,
            it enables developers to configure html error pages
            to be displayed in place of a error stack trace.
   -->
        <customErrors mode="Off" defaultRedirect="Error.aspx">
            <error statusCode="403" redirect="error/403error.aspx"/>
            <error statusCode="404" redirect="error/404error.aspx"/>
        </customErrors>
        <!-- personalization    -->
        <webParts>
            <personalization defaultProvider="AspNetSqlPersonalizationProvider">
                <providers>
                    <clear/>
                    <add name="AspNetSqlPersonalizationProvider" type="System.Web.UI.WebControls.WebParts.SqlPersonalizationProvider" connectionStringName="xxxx" applicationName="/"/>
                </providers>
            </personalization>
        </webParts>
        <!-- membership    -->
        <membership defaultProvider="SqlProvider" userIsOnlineTimeWindow="20">
            <providers>
                <add name="SqlProvider" type="System.Web.Security.SqlMembershipProvider" applicationName="/" connectionStringName="LocalSqlServer" requiresQuestionAndAnswer="true" enablePasswordRetrieval="true" requiresUniqueEmail="true" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="20" passwordFormat="Encrypted"/>
                <add name="SqlProvider1" type="System.Web.Security.SqlMembershipProvider" applicationName="/" connectionStringName="LocalSqlServer" requiresQuestionAndAnswer="false" enablePasswordRetrieval="true" requiresUniqueEmail="true" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" maxInvalidPasswordAttempts="20" passwordFormat="Encrypted"/>
            </providers>
        </membership>
    </system.web>
    <system.net>
        <mailSettings>
            <smtp from="xxxxx">
                <network host="xxxxx" password="" userName=""/>
            </smtp>
        </mailSettings>
    </system.net>
    <location path="smtp.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Test.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Index.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="MoreBlogs.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Admin/Index.aspx">
        <system.web>
            <authorization>
                <allow roles="administrator"/>
                <allow roles="reporter"/>
                <deny users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Admin/News.aspx">
        <system.web>
            <authorization>
                <allow roles="administrator"/>
                <allow roles="reporter"/>
                <deny users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Admin">
        <system.web>
            <authorization>
                <allow roles="administrator"/>
                <deny users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Groups/GroupCategory.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Groups/ForumView.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Blog.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="MyProfile.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="SignUp.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="NewSignUp.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="SignUpOpenID.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="LoginOpenID.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="default.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Validate.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Images">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="RadControls">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="App_Themes">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Browse.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Passwordrecover.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="ImageFetch.ashx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Search.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Groups/GroupList.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Groups/GroupProfile.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="BlogSearch.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="FAQ.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Rules.aspx">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Groups">
        <system.web>
            <authorization>
                <allow roles="administrator"/>
                <allow roles="reporter"/>
                <allow roles="user"/>
                <deny users="*"/>
            </authorization>
        </system.web>
    </location>
    <location path="Telerik.Web.UI.WebResource.axd">
        <system.web>
            <authorization>
                <allow users="*"/>
            </authorization>
        </system.web>
    </location>
    <system.web>
        <authorization>
            <allow roles="administrator"/>
            <allow roles="reporter"/>
            <allow roles="user"/>
            <deny users="*"/>
        </authorization>
    </system.web>
    <system.webServer>
        <validation validateIntegratedModeConfiguration="false"/>
        <modules>
            <remove name="ScriptModule"/>
            <add name="ScriptModule" preCondition="managedHandler" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        </modules>
            <handlers>
            <remove name="WebServiceHandlerFactory-Integrated"/>
            <remove name="ScriptHandlerFactory"/>
            <remove name="ScriptHandlerFactoryAppServices"/>
            <remove name="ScriptResource"/>
            <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add name="Telerik.Web.UI.WebResource"  path="Telerik.Web.UI.WebResource.axd" verb="*" type="Telerik.Web.UI.WebResource, Telerik.Web.UI" />
            <add name="Telerik_Web_UI_WebResource_axd" verb="*" preCondition="integratedMode" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.CaptchaImageHandler" />
        </handlers>
        <!--<handlers>
            <remove name="ScriptHandlerFactory"/>
            <remove name="ScriptHandlerFactoryAppServices"/>
            <remove name="ScriptResource"/><remove name="WebServiceHandlerFactory-Integrated"/>
            <add name="ScriptHandlerFactory" verb="*" path="*.asmx" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add name="ScriptHandlerFactoryAppServices" verb="*" path="*_AppService.axd" preCondition="integratedMode" type="System.Web.Script.Services.ScriptHandlerFactory, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
            <add name="ScriptResource" preCondition="integratedMode" verb="GET,HEAD" path="ScriptResource.axd" type="System.Web.Handlers.ScriptResourceHandler, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
        </handlers>-->
    </system.webServer>
    <system.codedom>
        <compilers>
            <compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CSharp.CSharpCodeProvider,System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
                <providerOption name="CompilerVersion" value="v3.5"/>
                <providerOption name="WarnAsError" value="false"/></compiler>
            <compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.VisualBasic.VBCodeProvider, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" warningLevel="4">
                <providerOption name="CompilerVersion" value="v3.5"/>
                <providerOption name="OptionInfer" value="true"/>
                <providerOption name="WarnAsError" value="false"/></compiler></compilers></system.codedom>
    <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
            <dependentAssembly>
                <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35"/>
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/></dependentAssembly>
            <dependentAssembly>
                <assemblyIdentity name="System.Web.Extensions.Design" publicKeyToken="31bf3856ad364e35"/>
                <bindingRedirect oldVersion="1.0.0.0-1.1.0.0" newVersion="3.5.0.0"/></dependentAssembly></assemblyBinding></runtime></configuration>


Mark
Top achievements
Rank 1
 answered on 19 Oct 2009
1 answer
94 views
Hi there,

I've been trying to set up RadAjaxManager with masterpage. I create a menu on the masterpage and I want to update only the ContentPlaceHolder, not the entire page.
I send attached a simple example that is not working.

I appreciate any help.

Marcio Nascimento
Schlurk
Top achievements
Rank 2
 answered on 19 Oct 2009
7 answers
178 views
The Property Builder control panel doesn't list the controls on the master page, but you can manually make AjaxSetting entries for those controls.  However, if you do make those entries and open the control panel to add additional entries, the manual entries get erased.  Also, the Property Builder control panel doesn't show list the objects in different <asp:Content> controls of that same web content form.  They can be entered manually as well, but the same issue exists.  The RadAjaxManager Property Builder needs to list all objects on the current web form/master page, as well as all of the parent master pages.
Will
Top achievements
Rank 1
 answered on 19 Oct 2009
1 answer
133 views
We are using the 2009 Q2 SP1 version  of the ASP.NET AJAX RadControls.  We are including the included Core.js, jQuery.js, and jQueryInclude.js on a master page in an ASP:ScriptManager control.

We are unable to access jQuery JScript Intellisense (Visual Studio Team System 2008 Development Edition, SP1, with Hotfix for Microsoft Visual Studio Team System 2008 Development Edition - ENU (KB946581) KB946581 installed) -- we get the following warning:

Warning 1 Error updating JScript IntelliSense: Telerik.Web.UI.Common.jQuery.js:Telerik.Web.UI: Object doesn't support this property or method @ 18:9345
T. Tsonev
Telerik team
 answered on 19 Oct 2009
3 answers
107 views
Is there a class in themes that just contains the base colors?

I have a form that has a header area on it that should match the feel of the them.  Ideally, I would add class="baseBackground" or something along those lines.
Dimo
Telerik team
 answered on 19 Oct 2009
3 answers
169 views
The issue is I have many RadAjaxPanels of which each can have many controls which cause a postback.  Some of the data in different RadAjaxPanels is dependent on changes that may be made in other RadAjaxPanels.  Therefore I need the dependent panels to postback and update whenever the "Master" panels update.  Currently I am using the RadAjaxManager to dynamicly set the dependencies.  This would be much simpler if I could Simply have one RadAjaxPanel cause a Postback in another RadAjaxPanel. This way I would not have to set each of the 10 or so controls in each of my panels or update the other panels.
Alex Jones
Top achievements
Rank 1
 answered on 19 Oct 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Simon
Top achievements
Rank 2
Iron
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Grant
Top achievements
Rank 3
Iron
Iron
Iron
Kao Hung
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?