Telerik Forums
UI for ASP.NET AJAX Forum
1 answer
72 views
I have a RadWindow with a DetailsView inside, wrapped with an update panel.

From a regular GridView, an Edit row button, will:

 Select the row on the grid
Change the mode to EditMode on the DetailsView
Then bind the datasource to the DetailsView
Then the RadWindow is displayed

Works Great!

But, the button that is registered as an asynchronous control (during page_load), is clicked the server-side click event is triggered.

At this point, the CurrentMode of the DetailsView is checked.

Is was in EditMode before the dialog was shown

But after the button click, the DetailsView is back in the default InsertMode.

Some troubleshooting steps would be helpful
Marin Bratanov
Telerik team
 answered on 14 Mar 2014
5 answers
111 views
I looked around and read stuff but yet I'm a bit confused if and how this is possible.
What I'm trying to achieve is to avoid using CDN and serve lokal resources but as .JS files so to be able to cache them with public caching on the browsers.
I know this could be handled if you manually specify wich .js resources to serve for each control but is there a way to obtain the same thing automatically, just like what happens when you use CDN, only serving the files locally?

Thanks in advance
Marin Bratanov
Telerik team
 answered on 14 Mar 2014
6 answers
83 views
Hi there,
I want to fill a Hidden Field on an aspx page after clicking a link.

My Code:
01.<%@ Page Title="Home Page" Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="WebApplication6._Default" %>
02.<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %>
03. 
04.<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
05.<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
06.<head id="Head1" runat="server">
07.    <title></title>
08.</head>
09.<body>
10.    <form id="Form1" runat="server">
11.    
12.        <telerik:RadAjaxManager ID="RadAjaxManagerCopyLink" runat="server">       
13.            <AjaxSettings>
14.                <telerik:AjaxSetting AjaxControlID="RadAjaxManagerCopyLink">
15.                    <UpdatedControls>
16.                        <telerik:AjaxUpdatedControl ControlID="Hidden_LayoutID" />                   
17.                    </UpdatedControls>               
18.                </telerik:AjaxSetting>
19.            </AjaxSettings>
20.            <ClientEvents OnResponseEnd="responseEndCopyLink" />
21.        </telerik:RadAjaxManager>
22.     
23.        <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
24.            <script type="text/javascript">
25.                function CopyLink()
26.                {
27.                    $find("<%= RadAjaxManagerCopyLink.ClientID %>").ajaxRequest("TeST");
28.                }
29. 
30.                function responseEndCopyLink(sender, eventArgs)
31.                {
32.                    alert('<' + document.getElementById("<%=Hidden_LayoutID.ClientID %>").value + '>');
33.                }
34.            </script>
35.        </telerik:RadCodeBlock>
36.        <telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
37.         
38.        <input type="hidden" id="Hidden_LayoutID" name="Hidden_LayoutID" runat="server" />
39. 
40.        <a id="Link1" runat="server" href="javascript:CopyLink();"> Create Layout Link  </a><br />       
41.    </form>
42.</body>
43.</html>

1.Public Class _Default
2.    Inherits System.Web.UI.Page
3. 
4.    Private Sub RadAjaxManager1_AjaxRequest(sender As Object, e As Telerik.Web.UI.AjaxRequestEventArgs) Handles RadAjaxManagerCopyLink.AjaxRequest
5.        Hidden_LayoutID.Value = "Hallo " & e.Argument.ToString
6.    End Sub
7.End Class

All work fine, but the VB.Net code doesn't change the Hidden_LayoutID.

What went wrong?

Thanks for answers
Thomas
Thomas
Top achievements
Rank 1
 answered on 14 Mar 2014
7 answers
95 views
I am trying to implement the veiwstate compression and find that it is not compressing the viewstate AT ALL. I have followed the instructions to add the browser file and my viewstate is not changing in size.

Has something changed or is the documentation not up-to-date.
Angel Petrov
Telerik team
 answered on 14 Mar 2014
4 answers
222 views
Hi,

I have a Rad grid on one of my page with filters on top. When I try to search these strings

REMEDIATION ANDRESTORATIONSERVICES, INC
REMEDIATION AND RESTORATIONSERVICES, INC

first one is searched but not the second one. Only the difference is one extra space character in 2nd string. I spent my whole day but unable to understand either its issue with capital characters or with longer words string. 

Please advice something.
Muhammad
Top achievements
Rank 1
 answered on 14 Mar 2014
1 answer
96 views
The rad editors on a site have users able to add custom words to the dictionary. The client however, wants to change it. They see that the users add terms that are unnecessary or incorrect terms being used. What they want is for them to approve of the terms before adding them to the custom dictionary. Is there a way to modify the behavior of the 'Add to Dictionary' option of a misspelled word to not add it to the custom dictionary and instead submit that entry into a database to wait to be approved?
Marin Bratanov
Telerik team
 answered on 14 Mar 2014
2 answers
112 views
Did you consider adding YouTube to the list of cloud service. I think it will be a very sought after option being able to upload videos directly to YouTube with this controls and after all YouTube could be considered one of the first and most widespread cloud service even if just video-oriented.

If you think this is a good idea I will open a feature request.
Massimiliano
Top achievements
Rank 1
 answered on 14 Mar 2014
5 answers
408 views
Hello;

We recently tried updating to versions 2013.3.1324.40 of Telerik.Web.UI and 4.1.7.1213 of AjaxControlToolkit. We use the Ajax Control Toolkit Script Manager on our application. With this combination, none of the Telerik javascript resources load. If we go back to previous version of toolkit, or use the ASP.NET Script Manager, everything works fine. 

Our release cycle is an annual one, so at this point it looks like we will be unable to update Ajax Control Toolkit as updating Telerik is a higher priority for this project. Is there a workaround for this issue?

Thanks,

Richard Shadman
Dimitar Terziev
Telerik team
 answered on 14 Mar 2014
7 answers
337 views
I have a requirement to show only all day events in the week view and day view.  I was wondering if there is way to hide time lines in RAD Scheduler?  I can increase All day event height using rsAllDayRow class, but that does not help.

Thanks for your help.
Boyan Dimitrov
Telerik team
 answered on 14 Mar 2014
1 answer
76 views
I did not see a forum for Data Access.  So, which forum should I use to post threads to about Data Access.  I am having all sorts of problems with that!
Doroteya
Telerik team
 answered on 14 Mar 2014
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?