Duplicated
Last Updated: 11 Nov 2024 15:06 by ADMIN

Hello,

I'm facing JavaScript issues after enabling "Telerik.ScriptManager.EnableHandlerEncryption" on Web.config,

I've just followed Encrypt Telerik WebResource Querystring in order to hide the Telerik version.

After this the RadMenu breaks when i do a PostBack action (by pressing a button), the console outputs the same error when hovering a RadMenuItem and the submenus has stop being displayed.

The console error:

Uncaught TypeError: Cannot read properties of null (reading 'apply')
  at Type.callBaseMethod (Telerik.Web.UI.WebRe...=:6:7353)
  at c.RadMenuItem._createChildControls (Telerik.Web.UI.WebRe...=:5300:49)
  at c.RadMenuItem._ensureChildControls (Telerik.Web.UI.WebRe...=:2770:72)
  at c.RadMenuItem._getChildren (Telerik.Web.UI.WebRe...=:2768:32)
  at c.RadMenuItem.get_items (Telerik.Web.UI.WebRe...=:3552:36)
  at c.RadMenuItem._onItemMouseOver (Telerik.Web.UI.WebRe...=:4159:8)
  at Telerik.Web.UI.EventMap._onDomEvent (Telerik.Web.UI.WebRe...=:3289:6)
  at HTMLDivElement.<anonymous> (Telerik.Web.UI.WebRe...=:6:307)
  at HTMLDivElement.b (Telerik.Web.UI.WebRe...=:623:53)

I've tested this error with version 2020.2.617.45 and 2022.3.913 but the same problem.

Looking in the forum i've found this post with a related issue also a reply has a reference to a private feedback and this last one seems to be the same or almost the same problem, so i've tried to follow the workaround on "global.asax" file and "Page_Load" on the master page without luck.

The steps i've follow:

  • Enabling "Telerik.ScriptManager.EnableHandlerEncryption".
  • Site seems working correctly.
  • I press a RadButton inside a RadAjaxPane.
  • Response from server is OK.
  • Then i hover the cursor on RadMenuItems on RadMenu.
  • Console starts to show the related error explaining above.
  • RadMenu stops to present the submenus completely.

I'd like to have another way to workaround this in order to make RadMenu work properly again and keep Telerik version hidden.

Regards

Duplicated
Last Updated: 28 Sep 2023 11:57 by ADMIN
Created by: Erich
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Instead of using jQuery-type script (kendo?), please provide functionality to the RadHTMLChart to specify label properties of a RadHTMLChart series.  For example (background colour, padding and border)


<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
         <script>
             function kendoChartInitializing(sender, args) {
                 var series = args.series;
                 for (var i = 0; i < series.length; i++) {                   
                     series[i].labels.background = "white";
                     series[i].labels.padding = 4;
                     series[i].labels.border = { width: 1, dashType: "solid", color: "black" }
                 }                                
             }
         </script>

Duplicated
Last Updated: 28 Sep 2023 11:54 by ADMIN

Instead of using jQuery-type script (kendo?), please provide functionality to the RadHTMLChart to specify MinSize and MaxSize properties of the RadHTMLChart.

Instead of the following:

<telerik:RadScriptManager ID="RadScriptManager1" runat="server"></telerik:RadScriptManager>
         <script>
             function kendoChartInitializing(sender, args) {
                 var series = args.series;
                 for (var i = 0; i < series.length; i++) {
                     series[i].maxSize = 30;
                     series[i].minSize = 10;
                     
                 }                             
             }
         </script>
provide a way to set a min and max value on the y-axis and the x-axis for that matter.  
Duplicated
Last Updated: 21 Jun 2022 23:03 by ADMIN
When the set_keepInScreenBounds method is called and you pass a true parameter, the popup of RadColorPicker is only partially visible (the tabs are hidden). 
Duplicated
Last Updated: 21 Apr 2022 07:51 by ADMIN
ADMIN
Created by: Rumen
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
7
This is the popular image zoom control used in many sites like amazon.com to display a zoomed selection of an image in another panel or window.
Duplicated
Last Updated: 19 Apr 2022 05:54 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: Editor
Type: Feature Request
1

			
Duplicated
Last Updated: 18 Apr 2022 14:46 by ADMIN
Created by: Albert
Comments: 1
Category: Editor
Type: Feature Request
1
Right now the end user can resize the table cells only through the provided interface in the Table Wizard and Properties inspector module. It will be useful this to be enabled as resize handlers directly in the table as it is implemented in the Kendo Editor - https://demos.telerik.com/kendo-ui/editor/index.
Duplicated
Last Updated: 16 Feb 2022 07:21 by ADMIN
Created by: Mikko
Comments: 1
Category: PdfViewer
Type: Feature Request
1
As a future request, it would be great to have PDF viewer with Annotations features.
Duplicated
Last Updated: 07 Feb 2022 16:17 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 0
Category: ColorPicker
Type: Feature Request
2

			
Duplicated
Last Updated: 02 Dec 2021 16:16 by ADMIN
Duplicated
Last Updated: 12 Nov 2021 11:54 by ADMIN
Duplicated
Last Updated: 14 Sep 2021 12:27 by ADMIN
According to the WAI-ARIA specification, the  Shift+Tab in Rich Text Box should focus the toolbar if the cursor is in the content area.As a side effect the Tab functionality get executed instead of Shift+Tab.

The behavior is correct in FF and IE, but not in Chrome

Possible workaround is overriding the InsertShiftTab command with this function:

<telerik:RadEditor runat="server" ID="RadEditor1">
</telerik:RadEditor>

<script type="text/javascript">
	Telerik.Web.UI.Editor.CommandList.InsertShiftTab = function (commandName, editor, oTool) {
		var oParent = editor.getSelectedElement();
		if (typeof (oParent.tagName) == "undefined")
			oParent = oParent.parentNode;

		var tdNode = Telerik.Web.UI.Editor.Utils.getElementParentByTag(oParent, "TD");
		if (tdNode) {
			Telerik.Web.UI.Editor.Utils.MoveToPreviousCell(tdNode, editor);
		}
		else {
			setTimeout(function () {
				var toolsArray = editor.get_toolAdapter().get_tools();
				var lastTool = toolsArray[toolsArray.length - 1].get_element();

				if (document.activeElement !== lastTool) {
					lastTool.focus();
				}
			}, 0);
		}
		return false;
	};
</script>
Duplicated
Last Updated: 14 Sep 2021 12:20 by ADMIN
A JavaScriptError is thrown when FileExplorer with enabled AsyncUplaod is used for multiple files uploading in IE. The message of the error is:
JavaScript runtime error: Object doesn't support property or method 'get_allowMultiRowSelection'

Steps to reproduce:
1. Open http://demos.telerik.com/aspnet-ajax/fileexplorer/examples/asyncupload/defaultcs.aspx in IE10
2. Open the FileExplorer's Upload dialog
3. Select 2 or more files for upload
4. Click the Upload button

Result: A JavaScript error is thrown.
Duplicated
Last Updated: 14 Sep 2021 11:57 by ADMIN
Create a page as below and assign a limited toolset to each editor in the code behind:


 <telerik:RadEditor  ID="RadEditor1" Skin="Default"  ContentAreaMode="Div"   runat="server"      Width="265px" Height="120px"  ToolsWidth="265px">
       <Content><p>A Word</p> </Content>
</telerik:RadEditor>
        
 <telerik:RadEditor  ID="RadEditor2" Skin="Default"  ContentAreaMode="Div"   runat="server"     Width="265px" Height="120px"  ToolsWidth="265px">
       <Content><p>A Word</p> </Content>
</telerik:RadEditor>
        
[Continue with this until ...]

 <telerik:RadEditor  ID="RadEditor10" Skin="Default"  ContentAreaMode="Div"   runat="server"     Width="265px" Height="120px"  ToolsWidth="265px">
       <Content><p>A Word</p> </Content>
</telerik:RadEditor>
        
Now display this page and right click for the top editor's Context Sensitive popup menu. Now scroll down to the bottom menu and right click for that menu's context sensitive menu. My experience is that this will erroneously produce the popup at the top of the browser. This is the most extreme example of a general behaviour where the vertical placement of popups is typically off the mark when working with multiple editors and ContentAreaMode="Div". Get rid of the ContentAreaMode="Div" and the problem disappears. 
Duplicated
Last Updated: 10 Aug 2021 09:59 by ADMIN
Because the TBODY THEAD and TFOOT elements are rendered in an incorrect order which is "header -> footer -> body" rather than "header -> body -> footer", the screen readers fail to present the data properly.
Duplicated
Last Updated: 15 Jun 2021 14:24 by ADMIN
Created by: José Ángel
Comments: 0
Category: Grid
Type: Feature Request
2
I think It would be great  the AUTOCOMPLETEBOX (integrated with FilterExpression)  insted of the TEXTBOX for filtering in riadgrid. 

It's too tedious adding a custom filter template , persisting and restoring filter values after postbacks, build the filterexpression manually etc.

I'm aware the checkList can provide similar functionality but it't not so clear,  intuitive, ergonomic and easy to use for current user.

Regards,
Ángel.
Duplicated
Last Updated: 15 Jun 2021 07:06 by ADMIN
ADMIN
Created by: Pero
Comments: 2
Category: Button
Type: Feature Request
9
Improve the SplitButton functionality so it is easier to use. Also provide a way for easier integration of ContextMenu with SplitButton as shown in the following demo: http://demos.telerik.com/aspnet-ajax/button/examples/splitbutton/defaultcs.aspx
Duplicated
Last Updated: 15 Jun 2021 07:04 by ADMIN
Created by: Curtis
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
I don't know what you call this button but it is a crossover between a drop down list/mega menu and a button.

Very simple example:
Google's "More" button across the top next to News/Videos/Maps and then there is the "More" button with the other options. 
https://www.google.com/#q=dog

Next example:
Your site! The skin selecting drop down:
http://demos.telerik.com/aspnet-ajax/grid/examples/overview/defaultcs.aspx

The option for a full fluid width like this would be nice along with the possibility of a fixed or fitted width. I also really like the animated arrow up/down.

But the mega menu example is Amazon:
http://www.amazon.com/

Their buttons/drop downs in the top right for "Your Account", "Try Prime", "Cart", and "Wish List".

These are beautiful and would be great functionality. It would also be ideal if the button/link itself that triggers the drop down doesn't have styles like the skins so they can easily be integrated into a website's existing navigational items and site design.

Duplicated
Last Updated: 14 Jun 2021 15:42 by ADMIN
Hi,
It would be so usefull a template or tool like codesmith or ironspeed to generate database-driven applications or at least a set of pages for CRUD operations where I can list the registers of each table/entity and edit it contents and Its relatives.

Thanks
Ángel.
Duplicated
Last Updated: 01 Jun 2021 13:37 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: DropDownList
Type: Bug Report
1

			
1 2