This is a migrated thread and some comments may be shown as answers.

Rad editor- Web.Config registration missing!

8 Answers 102 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Anoop
Top achievements
Rank 1
Anoop asked on 28 Oct 2015, 09:30 AM

 

Hello all, 

 I'm using Telerik.Web.UI and Telerik.Web.Design with version no - 2015.2.623.40 in my application. I am using it at two different pages , one in a master page and one in a usercontrol. I had added the required configuration in the web.config file.

When I am clicking on Find and Replace icon on one of the page using the master page, it is showing an error as Web.Config registration Missing!  The Telerik dialogs require a HTTP handler registration in web.Config. But I'm not able to see this error when I'm using it in a page which is accessing the usercontrol.

 I am not able to find the possible issue with this behaviour. Could you please suggest.

 

Thanks,

 

8 Answers, 1 is accepted

Sort by
0
Vessy
Telerik team
answered on 28 Oct 2015, 01:22 PM
Hi Anoop,

The experienced issue is discussed in details in the following forum thread, so I would advise that you try the suggestions given there: http://www.telerik.com/forums/rad-editor-web-config-registration-missing

Regards,
Vessy
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Anoop
Top achievements
Rank 1
answered on 29 Oct 2015, 06:09 AM

Hi Vessy Telerik,

Thanks for your information.

I tried resolving the issue with your suggestion, but it is not helping me in resolving my issue. Can you suggest anything else.

Thank you.

 

0
Anoop
Top achievements
Rank 1
answered on 29 Oct 2015, 07:32 AM

Further more on clicking "OK" on the pop error message, its then displays "Access Denied"

0
Vessy
Telerik team
answered on 29 Oct 2015, 11:55 AM
Hi Anoop,

Are you by any chance using some kind of impersonation/authentication on your site? If so, you will have to make sure that all Telerik handlers are granted with all needed permissions. You can read more about that in this help article—http://www.telerik.com/help/aspnet-ajax/editor-httphandlers-and-authentication.html.

For example:
<location path="Telerik.Web.UI.WebResource.axd">
    <system.web>
        <authorization>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>
<location path="Telerik.Web.UI.DialogHandler.aspx">
    <system.web>
        <authorization>
            <allow users="*"/>
        </authorization>
    </system.web>
</location>

Regards,
Vessy
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Anoop
Top achievements
Rank 1
answered on 29 Oct 2015, 01:29 PM

Hi Vessey,

Thanks for your response,

I'm having authorization for the users in my application. I have added the mentioned sections of code in the config but I'm still facing the issue that was mentioned above. As I said in my earlier post this is particular to one of the pages, for others it is working fine.

 Thanks.

0
Vessy
Telerik team
answered on 29 Oct 2015, 02:34 PM
Hi Anoop,

Thank you for the update. In order to provide you with further assistance, though, I will need to replicate the problematic issue and examine what is causing it on my side. Please, open a formal support ticket and provide a runnable sample reproducing the case in it, so we can continue the investigation of the case.

Regards,
Vessy
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Anoop
Top achievements
Rank 1
answered on 02 Nov 2015, 06:47 AM

Hello Vessy,

 Thank you, the issue has been resolved. 

 How can I change the z-index of "Find and Replace" pop-up.

Regards,

Anoop

 

0
Ianko
Telerik team
answered on 03 Nov 2015, 12:04 PM
Hello Anoop,

This should be done through the API of RadEditor and the RadWindow instance of the dialog. 

You should note that:
  1. Applying different than the default zIndex will affect other RadWindow popups on the page;
  2. It is recommended to apply this change only once per load.

Here you are a basic example:

<telerik:RadEditor runat="server" ID="RadEditor1"
    OnClientCommandExecuted="OnClientCommandExecuted">
</telerik:RadEditor>
 
 
<script>
// Client-side logic:
 
var findAndReplaceZindexChanged = false;
 
function OnClientCommandExecuted(editor, args) {
    var commandName = args.get_commandName();
 
    if (commandName === "FindAndReplace" && !findAndReplaceZindexChanged) {
        var dialog = editor.get_dialogOpener()._dialogContainers["FindAndReplace"];
 
        // This change should be done only once.
        findAndReplaceZindexChanged = true;
 
        // From now on, every RadWindow or Dialog opened will be with zIncdex greater than 10000.
        dialog.get_popupElement().style.zIndex = 10000;
    }
}

</script>

Regards,
Ianko
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
Tags
Editor
Asked by
Anoop
Top achievements
Rank 1
Answers by
Vessy
Telerik team
Anoop
Top achievements
Rank 1
Ianko
Telerik team
Share this question
or