Click here to Skip to main content
15,890,123 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Populate word with data Pin
Nathan Minier3-Feb-16 2:21
professionalNathan Minier3-Feb-16 2:21 
GeneralRe: Populate word with data Pin
Praveen Kandari3-Feb-16 18:11
Praveen Kandari3-Feb-16 18:11 
GeneralRe: Populate word with data Pin
Richard Deeming4-Feb-16 1:31
mveRichard Deeming4-Feb-16 1:31 
GeneralRe: Populate word with data Pin
Nathan Minier4-Feb-16 3:21
professionalNathan Minier4-Feb-16 3:21 
QuestionProblem with Post request in my ASP.NET Web API + jQuery Pin
Farhad Eft2-Feb-16 12:18
Farhad Eft2-Feb-16 12:18 
AnswerRe: Problem with Post request in my ASP.NET Web API + jQuery Pin
F-ES Sitecore2-Feb-16 23:10
professionalF-ES Sitecore2-Feb-16 23:10 
QuestionLinq to Sql: How to Fetch specific row using store procedure and display columns data into textboxes Pin
Ahmer Ali Ahsan Sheikh2-Feb-16 7:38
Ahmer Ali Ahsan Sheikh2-Feb-16 7:38 
QuestionAll my Telterik Control became disabled Pin
indian1431-Feb-16 10:42
indian1431-Feb-16 10:42 
Hi,

I am going through an issue with Telerik controls, all my Telterik Control because disabled, like RadEditor, RadListBox and RadAutoComplete. I installed the Telerik Version=2016.1.113.35, before that I was having the Telerik Version=2015.2.623.45. After installing I converted all my Application and its related components from .Net 3.5 to .Net 4.0, now all my Telerik Controls became disabled, the ones which were working before also became disabled.

Any help what could the reason and solution for it, any think like a link, a code snippet or even a suggestion would be helpful.

Here is my code:
<%@ Page Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Login.aspx.cs" Inherits="ResearchStudiesAdmin.Website.Login" %>

<asp:Content ID="Content1" ContentPlaceHolderID="HeadContent" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
 <telerik:RadAjaxLoadingPanel runat="server" ID="RadAjaxLoadingPanel1">
    </telerik:RadAjaxLoadingPanel>
    <telerik:RadAjaxManager runat="server" ID="RadAjaxManager1">
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
                <UpdatedControls>
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings> 
        <AjaxSettings>
            <telerik:AjaxSetting AjaxControlID="RadAjaxManager1">
                <UpdatedControls>
                    <telerik:AjaxUpdatedControl ControlID="radLongDesc" />
                </UpdatedControls>
            </telerik:AjaxSetting>
        </AjaxSettings><br />
    </telerik:RadAjaxManager><br />
    <telerik:RadSkinManager ID="RadSkinManager1" runat="server" ShowChooser="true" />
    <div class="demo-containers">

<pre>
    <div class="demo-containers">            
        <telerik:RadEditor Height="300px" Width="700px" ID="radLongDesc" runat="server" ToolbarMode="Default"
            StripFormattingOptions="all" ContentAreaMode="Div">
            <tools>
                            <telerik:EditorToolGroup Tag="MainToolbar">
                                <telerik:EditorTool Name="Print" ShortCut="CTRL+P" />
                                <telerik:EditorTool Name="AjaxSpellCheck" />
                                <telerik:EditorTool Name="FindAndReplace" ShortCut="CTRL+F" />
                                <telerik:EditorTool Name="Cut" />
                                <telerik:EditorTool Name="Copy" ShortCut="CTRL+C" />
                                <telerik:EditorTool Name="Paste" ShortCut="CTRL+V" />
                                <telerik:EditorTool Name="FormatStripper" />
                                <telerik:EditorTool Name="PasteStrip" />
                            </telerik:EditorToolGroup>
                            <telerik:EditorToolGroup>
                                <telerik:EditorTool Name="Undo" ShortCut="CTRL+Z" />
                                <telerik:EditorTool Name="Redo" ShortCut="CTRL+Y" />
                            </telerik:EditorToolGroup>
                            <telerik:EditorToolGroup Tag="InsertToolbar">
                                <telerik:EditorTool Name="LinkManager" ShortCut="CTRL+K" />
                                <telerik:EditorTool Name="Unlink" ShortCut="CTRL+SHIFT+K" />
                            </telerik:EditorToolGroup>
                            <telerik:EditorToolGroup Tag="Superscript">
                                <telerik:EditorTool Name="Subscript" />
                                <telerik:EditorTool Name="InsertParagraph" />
                                <telerik:EditorTool Name="InsertHorizontalRule" />
                            </telerik:EditorToolGroup>
                            <telerik:EditorToolGroup>
                                <telerik:EditorTool Name="Bold" ShortCut="CTRL+B" />
                                <telerik:EditorTool Name="Italic" ShortCut="CTRL+I" />
                                <telerik:EditorTool Name="JustifyLeft" />
                                <telerik:EditorTool Name="JustifyCenter" />
                                <telerik:EditorTool Name="JustifyRight" />
                                <telerik:EditorTool Name="JustifyFull" />
                                <telerik:EditorTool Name="JustifyNone" />
                                <telerik:EditorTool Name="Indent" />
                                <telerik:EditorTool Name="Outdent" />
                            </telerik:EditorToolGroup>
                            <telerik:EditorToolGroup>
                                <telerik:EditorTool Name="InsertOrderedList" />
                                <telerik:EditorTool Name="InsertUnorderedList" />
                                <telerik:EditorTool Name="ToggleTableBorder" />
                            </telerik:EditorToolGroup>
                        </tools>
        </telerik:RadEditor>            
        <br />
        <asp:RequiredFieldValidator ID="RequiredFieldValidator4" runat="server" ErrorMessage="Long Description."
            CssClass="ErrorMsg" ControlToValidate="radLongDesc" ValidationGroup="vgSave" Display="Dynamic"></asp:RequiredFieldValidator>
    </div>
</div>




Thanks in advance.
Thanks,

Abdul Aleem

"There is already enough hatred in the world lets spread love, compassion and affection."

AnswerRe: All my Telterik Control became disabled Pin
ZurdoDev2-Feb-16 8:41
professionalZurdoDev2-Feb-16 8:41 
QuestionI am getting following Telerik errors when Compiling the Application Pin
indian1431-Feb-16 7:31
indian1431-Feb-16 7:31 
AnswerRe: I am getting following Telerik errors when Compiling the Application Pin
Brisingr Aerowing1-Feb-16 9:09
professionalBrisingr Aerowing1-Feb-16 9:09 
GeneralSource code project for complex event processing Pin
Member 1185956231-Jan-16 19:55
Member 1185956231-Jan-16 19:55 
SuggestionRe: Source code project for complex event processing Pin
Richard MacCutchan31-Jan-16 21:25
mveRichard MacCutchan31-Jan-16 21:25 
GeneralRe: Source code project for complex event processing Pin
JHizzle31-Jan-16 22:37
JHizzle31-Jan-16 22:37 
GeneralRe: Source code project for complex event processing Pin
Brisingr Aerowing1-Feb-16 9:13
professionalBrisingr Aerowing1-Feb-16 9:13 
QuestionI am getting the Pin
indian14328-Jan-16 21:45
indian14328-Jan-16 21:45 
AnswerRe: I am getting the Pin
F-ES Sitecore28-Jan-16 21:59
professionalF-ES Sitecore28-Jan-16 21:59 
SuggestionRe: I am getting the Pin
Richard Deeming29-Jan-16 5:07
mveRichard Deeming29-Jan-16 5:07 
GeneralRe: I am getting the Pin
indian14329-Jan-16 6:47
indian14329-Jan-16 6:47 
GeneralRe: I am getting the Pin
Richard Deeming29-Jan-16 6:56
mveRichard Deeming29-Jan-16 6:56 
GeneralRe: I am getting the Pin
indian14329-Jan-16 8:17
indian14329-Jan-16 8:17 
GeneralRe: I am getting the Pin
F-ES Sitecore31-Jan-16 22:13
professionalF-ES Sitecore31-Jan-16 22:13 
GeneralRe: I am getting the Pin
indian1431-Feb-16 8:02
indian1431-Feb-16 8:02 
AnswerRe: I am getting the Pin
Nathan Minier29-Jan-16 2:12
professionalNathan Minier29-Jan-16 2:12 
GeneralRe: I am getting the Pin
indian14329-Jan-16 6:49
indian14329-Jan-16 6:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.