Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
79 views
I am using the radskinmanager + radformdecorator to skin my pages, when using dark schemes eg. Glow, the pages initially load with a white background and then get skinned a short time later so the user-experience is a page that flashes white then black during load.
Aneliya Petkova
Telerik team
 answered on 11 Dec 2014
3 answers
549 views
Dear Telerik Team,

I would like to disable or enable OnRowDblClick event of Grid accordingly user permissions.

When I tried the following code,the whole page data disappears.

< if (Condition is true)
                    RadGrid1.ClientSettings.ClientEvents.OnRowDblClick = "true";

else
RadGrid1.ClientSettings.ClientEvents.OnRowDblClick = "false";

>


Thanks in advance
Eyup
Telerik team
 answered on 11 Dec 2014
4 answers
268 views
Hi
     I have a radgrid in which iam using template columns. I am selecting radgrid rows on clicking a row. But when i click on the textbox in templatecolumn, the row is not getting selected.Please help me out.
Eyup
Telerik team
 answered on 11 Dec 2014
3 answers
106 views
I have several fields on my panel that is ajaxified with RadAjaxManager, using RadAjaxLoadingPanel.  When a partial postback occurs and LoadingPanel is shown, the focus of the field is lost.

For example I have two field, and the first field has a OnTextChanged Event triggered with autopostback is set true.  When I type in a value in the first field and press tab, the partial postback is triggered, the Loadingpanel appears but when the postback is finished, no field has focus.  I would expect the second field to have the focus.

This works with asp:updatepanel and ajax.
Any ideas on how to fix this?

Viktor Tachev
Telerik team
 answered on 11 Dec 2014
1 answer
511 views
I have a RadAsyncUpload control on my page. I want to be able to attach the file on selecting a file. I do not want the user to click a button after he selects a file. How can I achieve this?
Plamen
Telerik team
 answered on 11 Dec 2014
2 answers
264 views
Hi,

Is there a way I can remove the text highlighted in image and keep it as a watermark in adjoining textbox.

Attaching image for reference.

Thanks
Shubhankar
Top achievements
Rank 1
 answered on 11 Dec 2014
9 answers
429 views
I dropped a RadMaskedTextBox on a asp.net form that already had several asp.net textbox controls but the border / shadow and font of the RadMaskedTextBox does not match the current asp.net TextBox controls.
I have not styles applied to the page.

How to I get the 2 input boxes to match without setting up a bunch of css for the page?
James
Top achievements
Rank 1
 answered on 10 Dec 2014
2 answers
166 views
I am unable to see any other skins aside from the Default skin.  I am using Telerik Version 2014.3.1024.45

I have Telerik.Web.UI.Skins in References and bin.  I have tried it just in bin and just in References as well.  I have rebooted Visual Studio after each attempt.


When I go to the project Configuration Wizard, the Skin Packs list only shows Telerik.Web.UI which is grayed out.  The Default Skin box shows None and default.

I don't know what else to do.  I haven't found any useful solutions in the forums.


Rick
Top achievements
Rank 1
 answered on 10 Dec 2014
3 answers
272 views
My apologies for posting a question that may have already been answered.  I've searched multiples times and none of the solutions apply to my situation.


I am receiving this error when I open my default.aspx page immediately after creating the project.  I have not changed any code at all.

I get Error Rendering Control for RadScriptManager
I get Error Creating Control for RadAjaxManager

Could not load file or assembly ‘Telerik.Web.UI, Version 2014.3.1024.45, Culture=neutral,
PublicKeyToken=121fae7816bda3d4’ or one of its dependencies.  The located assembly’s manifest definition
does not match the assembly reference. 
(Exception from HRESULT: 0x80131040)

I've updated the Telerik Suite since I first had this issue and I still have the issue on newly created projects.

Default.aspx
<%@ Page Language="VB" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="GenericBrowser._Default" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<head runat="server">
    <title></title>
    <telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server" />
</head>
<body>
    <form id="form1" runat="server">
    <telerik:RadScriptManager ID="RadScriptManager1" runat="server">
        <Scripts>
            <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 JavaScript code here.
    </script>
    <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    </telerik:RadAjaxManager>
    <div>
 
    </div>
    </form>
</body>
</html>

Webconfig
<?xml version="1.0"?>
<configuration>
    <appSettings>
        <add key="Telerik.ScriptManager.TelerikCdn" value="Disabled" />
        <add key="Telerik.StyleSheetManager.TelerikCdn" value="Disabled" />
    </appSettings>
    <system.web>
        <compilation debug="false" strict="false" explicit="true" targetFramework="4.5.1" />
        <httpRuntime targetFramework="4.5.1" />
        <pages>
            <controls>
                <add tagPrefix="telerik" namespace="Telerik.Web.UI" assembly="Telerik.Web.UI" />
            </controls>
        </pages>
        <httpHandlers>
 
            <add path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" validate="false" />
            <add path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" validate="false" />
            <add path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" validate="false" />
            <add path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" validate="false" />
            <add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" validate="false" />
        </httpHandlers>
        <httpModules>
            <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" />
            <add name="RadCompression" type="Telerik.Web.UI.RadCompression" />
 
        </httpModules>
    </system.web>
 
    <system.webServer>
        <validation validateIntegratedModeConfiguration="false" />
        <modules runAllManagedModulesForAllRequests="true">
            <remove name="RadUploadModule" />
            <add name="RadUploadModule" type="Telerik.Web.UI.RadUploadHttpModule" preCondition="integratedMode" />
            <remove name="RadCompression" />
            <add name="RadCompression" type="Telerik.Web.UI.RadCompression" preCondition="integratedMode" />
 
        </modules>
        <handlers>
 
            <remove name="ChartImage_axd" />
            <add name="ChartImage_axd" path="ChartImage.axd" type="Telerik.Web.UI.ChartHttpHandler" verb="*" preCondition="integratedMode" />
            <remove name="Telerik_Web_UI_SpellCheckHandler_axd" />
            <add name="Telerik_Web_UI_SpellCheckHandler_axd" path="Telerik.Web.UI.SpellCheckHandler.axd" type="Telerik.Web.UI.SpellCheckHandler" verb="*" preCondition="integratedMode" />
            <remove name="Telerik_Web_UI_DialogHandler_aspx" />
            <add name="Telerik_Web_UI_DialogHandler_aspx" path="Telerik.Web.UI.DialogHandler.aspx" type="Telerik.Web.UI.DialogHandler" verb="*" preCondition="integratedMode" />
            <remove name="Telerik_RadUploadProgressHandler_ashx" />
            <add name="Telerik_RadUploadProgressHandler_ashx" path="Telerik.RadUploadProgressHandler.ashx" type="Telerik.Web.UI.RadUploadProgressHandler" verb="*" preCondition="integratedMode" />
            <remove name="Telerik_Web_UI_WebResource_axd" />
            <add name="Telerik_Web_UI_WebResource_axd" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" verb="*" preCondition="integratedMode" />
        </handlers>
    </system.webServer>
</configuration>
Rick
Top achievements
Rank 1
 answered on 10 Dec 2014
5 answers
85 views
Hi All,

I am using RadComboBox binding with webservice. so every letter typing webservice method search in database. this is fine when small amount of data. but in my side it is large amount of data. so i do not want search every letter typing. i want this searching only enter key press instead of every letter. i want to set AutoPostBack="true" also. please help me with this one. this is important and performance issue for me. Please help ASAP.


Thanks in Advance,
Dhamodharan
Deepak
Top achievements
Rank 1
 answered on 10 Dec 2014
Narrow your results
Selected tags
Tags
+? more
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Edmond
Top achievements
Rank 1
Iron
fabrizio
Top achievements
Rank 2
Iron
Veteran
RobMarz
Top achievements
Rank 2
Iron
Fakhrul
Top achievements
Rank 1
Iron
Tejas
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?