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
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
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.
Further more on clicking "OK" on the pop error message, its then displays "Access Denied"
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
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.
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
Hello Vessy,
Thank you, the issue has been resolved.
How can I change the z-index of "Find and Replace" pop-up.
Regards,
Anoop
This should be done through the API of RadEditor and the RadWindow instance of the dialog.
You should note that:
- Applying different than the default zIndex will affect other RadWindow popups on the page;
- 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
>
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
>
Ianko
Telerik