Declined
Last Updated: 13 May 2024 11:38 by ADMIN
Created by: Tracey Schneider
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Hello,

Sometimes the context menu isn't positioned correctly when it pops up for the first time, or after you scroll the page or do a browser zoom. I've attached an example reported by our tester. I've checked your technical support and have found this:

https://feedback.telerik.com/aspnet-ajax/1374622-context-menus-mispositioned-after-page-scroll-when-contentareamode-div?_ga=2.47056743.1148387732.1712639084-795296971.1689564005&_gl=1*1fbejbs*_ga*Nzk1Mjk2OTcxLjE2ODk1NjQwMDU.*_ga_9JSNBCSF54*MTcxMjcwNTQxNS42NS4xLjE3MTI3MDY1NTUuNjAuMC4w*_gcl_au*MTk5NTg1MzE3OS4xNzEyMjAwMDcy

I've tried setting the render mode to Lightweight (originally set to Auto), but unfortunately no luck.

Is this something that is fixed in a later version of the editor, or do you have another fix/workaround?

Thank you in advance,

Gerald

 

 

Declined
Last Updated: 06 Feb 2023 10:53 by ADMIN
Created by: Camputaro
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Hello,

Can you please add the control ID to this error so the affected control can be easily identified?  Right now, if you have a page with multiple combo boxes, it is extremely time consuming to locate the one with the issue.

Thank you,
DJ

--

Selection out of range
Parameter name: value

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentOutOfRangeException: Selection out of range
Parameter name: value

Source Error:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:
[ArgumentOutOfRangeException: Selection out of range
Parameter name: value]
   Telerik.Web.UI.RadComboBox.PerformDataBinding(IEnumerable dataSource) +339
   Telerik.Web.UI.RadComboBox.OnDataBinding(EventArgs e) +1196
   Telerik.Web.UI.RadComboBox.PerformSelect() +34
   System.Web.UI.WebControls.BaseDataBoundControl.EnsureDataBound() +134
   Telerik.Web.UI.RadComboBox.OnPreRender(EventArgs e) +57
   System.Web.UI.Control.PreRenderRecursiveInternal() +200
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Control.PreRenderRecursiveInternal() +297
   System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +7474

 

Declined
Last Updated: 30 Aug 2022 13:52 by ADMIN

It would be great if telerik can provide remove blank data rows on column which helps when dealing with huge data.

I am able to achieve the logic with below code.

  var grid = $find('<%= RadGrid_MeaInfo.ClientID %>');
            // MasterTable
            var masterTable = grid.get_masterTableView();
            // Items/Rows
            var dataItems = masterTable.get_dataItems();

            for (var i = 0; i < dataItems.length; i++) {
                var item = masterTable.getCellByColumnUniqueName(dataItems[i], "TriggerMan")
                debugger;
                if (item.innerHTML == "" || item.innerHTML == undefined) {
                    masterTable.hideItem(i);
                }
            }


Declined
Last Updated: 22 Aug 2022 09:36 by ADMIN
Created by: eDAD
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Test Environment:

OS: Windows_11
Version: 21H2
OS Build: 22000.795
Browser: Version 103.0.1264.71 (Official Build) (64-bit)
  1. Open URL: https://demos.telerik.com/aspnet-ajax/grid/examples/overview/defaultcs.aspx page in Edge Browser.
  2. Open NVDA
  3. Tab to the 'BOOK NOW' controls in the grid.
  4. Press Enter
  5. Observe the issue that 'BOOK NOW' is announced as a link, but it opens a popup instead of behaving as a link. It should have a role of button. 

Actual Behavior:   

Incorrect role as 'link' is defined for button control "Book Now." 

Expected Behavior:

In this case, the expected role is {button}. For the "Book Now" button the correct role should be defined.

All components need a proper role attribute, ideally with semantics. In rare cases a role attribute should be added to give full context and information to assistive technology. 

                                                                                                                                        

Declined
Last Updated: 18 Apr 2022 14:22 by ADMIN
Created by: Fawad
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
2
It would be useful to add a functionality to existing Input control or create a new control which will allow users to use touch screen pen to write text. The control should automatically convert the handwriting into simple string text (NOT Image) using OCR or something else.
Declined
Last Updated: 27 Apr 2021 11:18 by ADMIN
Created by: Erik
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Inconsistent behavior between Firefox and Chrome (other browser not tested) when cutting and pasting content within the editor.

We have more advanced cases but I tried to simplify the case here as much as I could.

 

This has been tested on you demo page at https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

I have tested using Firefox 88 and Chrome 90, both on Widows 10.

 

Reproduce:
Paste the following content in html-mode:

<p>Lorem ipsum dolor sit amet.</p>
<p>Ut enim ad minim veniam.</p>
<figure>
  <img src="../../images/attractions_LosGigantes.png" alt="Test">
  <figcaption>Image text</figcaption>
</figure>
<p>Excepteur sint occaecat cupidatat non proident.</p>

Switch to designmode.

Mark text, including the dot after veniam until before the first character in Excepteur

Cut

(First difference noted here)

Goto after Lorum Ipsum
Paste

(Second difference here)

 

First difference:

In Chrome you get:

<p>Lorem ipsum dolor sit amet.</p>
<p>Ut enim ad minim veniamExcepteur sint occaecat cupidatat non proident.</p>

In Firefox you get:

<p>Lorem ipsum dolor sit amet.</p>
<p>Ut enim ad minim veniam</p>
<p>Excepteur sint occaecat cupidatat non proident.</p>



Second difference:

Chrome:
<p>Lorem ipsum</p>
<p>.</p>
<p><figure><img src="https://demos.telerik.com/aspnet-ajax/editor/images/attractions_LosGigantes.png" alt="Test" /><figcaption>Image text</figcaption>
<div>&nbsp;</div>
</figure> dolor sit amet.</p>
<p>Ut enim ad minim veniamExcepteur sint occaecat cupidatat non proident.</p>

Firefox:
<p>Lorem ipsum.
<figure>
<img src="https://demos.telerik.com/aspnet-ajax/editor/images/attractions_LosGigantes.png" alt="Test" />
<figcaption>Image text</figcaption>
</figure>
dolor sit amet.</p>
<p>Ut enim ad minim veniam</p>
<p>Excepteur sint occaecat cupidatat non proident.</p>

 

Declined
Last Updated: 27 Apr 2021 11:07 by ADMIN

Inconsistent behavior between Firefox and Chrome (other browser not tested) when drag and dropping content within the editor.

We have more advanced cases (when this breaks things like totally like cutting a block with image and caption into pieces in Chrome) but I tried to simplify the case here as much as I could.

 

This has been tested on you demo page at https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

I have tested using Firefox 88 and Chrome 90, both on Widows 10.

 

Steps to reproduce:
Switch to html-mode and add the following content:
<p>Lorem ipsum dolor sit amet.</p>
<p>Ut enim ad minim veniam.</p>
<p><img alt="" src="../../images/attractions_LosGigantes.png" /></p>

Switch back to wysiwyg mode

Drag the image and drop it in the middle of one of the text lines. I dropped it just after Lorum ipsum.

 

Result is very different in Firefox and Chrome

Firefox :
<p>Lorem ipsum </p>
<p><img alt="" src="https://demos.telerik.com/aspnet-ajax/editor/images/attractions_LosGigantes.png" /></p>
<p>dolor sit amet.</p>
<p>Ut enim ad minim veniam.</p>

Chrome:

<p>Lorem ipsum<img alt="" src="https://demos.telerik.com/aspnet-ajax/editor/images/attractions_LosGigantes.png" />&nbsp;dolor sit amet.</p>
<p>Ut enim ad minim veniam.</p>

We prefer the behavior in Firefox as it works when having mode advanced blocks than just an image. In Chrome the content is split into the new context and broken.

Declined
Last Updated: 09 Jun 2021 15:32 by ADMIN

can we give two Focus Keys in KeyboardNavigationSettings ?

Current -->  <KeyboardNavigationSettings CommandKey="Alt" FocusKey="P" />

Two key strokes -->  <KeyboardNavigationSettings CommandKey="Alt" FocusKey="P + Y" />

Declined
Last Updated: 31 Aug 2020 15:30 by ADMIN
Created by: JeffSM
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

I suggest update Device Screen Size for 

Telerik.Web.Device.Detection

 


using System;

namespace Telerik.Web.Device.Detection
{
    /// <summary>
    /// The device screen size based on the its dimensions in CSS pixels
    /// </summary>
    /// <remarks>
    ///The default ranges are:
    /// Small (to 600) CSS pixels
    /// Medium (601-1024) CSS pixels
    /// Large (1025 - 1366) CSS pixels
    /// ExtraLarge (over 1366) CSS pixels
    /// FullHD (over 1920) CSS pixels
    /// UHD4K = 5 // 3840
    /// UHD8K = 6 // 7680
    /// UHD10K = 7 // 10240
    /// </remarks>
    public enum DeviceScreenSize
    {
        Small = 0, // 0-600
        Medium = 1, // 601-1024
        Large = 2, // 1025 - 1366
        ExtraLarge = 3 // over 1366
        FullHD = 4 // 1920
        UHD4K = 5 // 3840
        UHD8K = 6 // 7680
        UHD10K = 7 // 10240

    }
}

Best,

 

Jeff

Declined
Last Updated: 22 Jul 2020 12:25 by ADMIN
Created by: P L P
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Hi Team,

 

I'm using Telerik.Web.UI Version 2020.2.617

I have integrated it and added a reference in my web application, asked me to upgrade the version of Assemblies "System.Web.Extension.dll" and "System.Core.dll" has to be upgraded to version 4.0, I did that too, Now I'm getting an error while I'm running or doing build "The type or namespace name 'Script' does not exist in the namespace 'System.Web' (are you missing an assembly reference?)", Assembly it is referring to "System.Web.Script.Services", same error is coming for other attributes like "ScriptMethod, ScriptMethodAttribute"

For the Key word "this" it is throwing as below error

It is throwing an error for "System.Linq.Expressions"

 

  

 

Can anyone help me out on this how to resolve these bugs.

 

Regards

P L P Kumar

Declined
Last Updated: 17 May 2021 08:52 by ADMIN
Created by: George
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Twice this week, my Asp.net project would not compile because of a Telerik.Web.UI.dll link error. I run into this problem frequently, Telerik is very flakey. My last bug report was this compile problem with another Telerik file.

The solution to both compile problems is to clear the Properties/licenses.licx file. As least the second time, I knew right where to go without wasting time searching the web. A couple hours wasted on the first one on Monday.  I suppose I can expect to clear it Friday again when the compile fails on Telerik.

The Properties/licenses.licx is re-populating itself causing the compile to fail on this Telerik issue. Why have a licenses.licx if it always breaks the software? Your support says, clear the file - they know it causes endless problems.

There is no fix on my side for the this problem, Telerik must do something about the licenses.licx problem in an update.

I have these Telerik compiler warnings. The entire list is Telerik created, misleading and annoying.

Severity Code Description Project File Line Suppression State
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'Telerik.Windows.Documents.Spreadsheet, Version=2020.1.109.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active
Warning Found conflicts between different versions of the same dependent assembly that could not be resolved.  These reference conflicts are listed in the build log when log verbosity is set to detailed. SignupList
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml, Version=2020.1.109.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'Telerik.Windows.Documents.Flow, Version=2020.1.109.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'Telerik.Windows.Documents.Core, Version=2020.1.109.40, Culture=neutral, PublicKeyToken=5803cfa389c90ce7' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'Telerik.Web.Spreadsheet, Version=2020.1.114.40, Culture=neutral, PublicKeyToken=121fae78165ba3d4' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'Telerik.Everlive.Sdk.Net35, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b28c218413bdf563' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'Microsoft.WindowsAzure.Storage, Version=3.0.2.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'Microsoft.AnalysisServices.AdomdClient, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'AWSSDK.S3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active
Warning IDE1003 Analyzer assembly 'C:\Users\George\OneDrive\Development\Ongoing\SignupList\bin\Telerik.Web.UI.dll' depends on 'AWSSDK.Core, Version=3.3.0.0, Culture=neutral, PublicKeyToken=885c28607f98e604' but it was not found. Analyzers may not run correctly unless the missing assembly is added as an analyzer reference as well. SignupList 1 Active

 

Declined
Last Updated: 27 Mar 2020 09:43 by ADMIN
Created by: RUSHABH
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

We are looking for an option/rad control to have outlook or msg attachment. We have outlook emails with attachment within it. The attachment can vary from PDF, WORD, Outlook Message, Images, and more. The attachment also includes the signature or sensitive data. Currently, we are using a redemption library for an MSG attachment. We would like to know if Telerik offers a solution like redemption we can try. Redemption has a lot of issues. So we are looking for an alternative. Can you please provide an option for MSG attachment? 

Declined
Last Updated: 08 Apr 2020 14:03 by ADMIN
Created by: Doug
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

https://identity.telerik.com/v2/oauth/signin?ReturnUrl=...
http://docs.identityserver.io/en/latest/

Hi,It would be really handy to have an best practice identity provider UX 

There are  many ways to skin a cat, but it would be really handy to have a UI component much like you find in the ~/Account folder created by MS that all worked.
That had all the recovery logon by email working, having built in 2FA working.

The quick win would be to tell us how to write a 'Telerik Scenario' and where we can share them in Marketplace.telerik.com ?

 

Thanks

doug 

Declined
Last Updated: 13 Jan 2020 12:30 by ADMIN

Hi all,

 

I saw an error File/Dir not found 404 on your demo as attached picture.

 

How to fixed error File/Dir not found 404 by drag and drop folder(s) after I clicked open it?

Declined
Last Updated: 25 Nov 2019 08:50 by ADMIN
Created by: Franz
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Hi,

In mobile and tablet device is very difficult increase and decrease the size of columns of RadGrid, exist a specified method or a workaround for resize a grid ? 

Is possible increase border(left/right) of column for change it more easiest ?

The respons of my ticket in forum is that:


"Hi Giacomo,

I am afraid we currently do not have alternative ways for resizing the Grid column. However, I advise that you share your idea officially by creating a Feature Request in the Progress® Telerik® UI for ASP.NET AJAX Feedback Portal. There the request will have the potential to become popular. Items with higher priority will be processed earlier."

 

Best regards

Declined
Last Updated: 11 Jun 2021 12:00 by ADMIN
Created by: Webmaster
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

        <!-- Load Facebook SDK for JavaScript -->
        <script>
            //Executes on page load
            window.fbAsyncInit = function () {
                FB.init({
                    appId: '{your-app-id}',
                    xfbml: true,
                    version: 'v2.5'
                });

                // Get Embedded Video Player API Instance
                var my_video_player;
                FB.Event.subscribe('xfbml.ready', function (msg) {
                    if (msg.type === 'video') {
                        my_video_player = msg.instance;
                        my_video_player.unmute();
                    }
                });
            };

            (function (d, s, id) {
                var js, fjs = d.getElementsByTagName(s)[0];
                if (d.getElementById(id)) { return; }
                js = d.createElement(s); js.id = id;
                js.src = "//connect.facebook.net/en_US/sdk.js";
                fjs.parentNode.insertBefore(js, fjs);
            }(document, 'script', 'facebook-jssdk'));
        </script>

RadMediaPlayer provides built-in integration with Facebook urls from sql table.
Declined
Last Updated: 02 Jan 2020 16:32 by ADMIN

We suspect a bug of Telerik controls:

 

Bug of Telerik: PageView.set_contentUrl(MyUrl) method - call MyUrl twice if RadTabStrip and RadMultiPage is inside RadAjaxPanel control. Firefox only.

Code: http://bit.ly/2NVbm8Z

It enter here two times: http://bit.ly/2NZ0cQH

 

If try it in chrome - request goes only one time.

If remove RadAjaxPanel - also request goes only one time.

 

Is it bug of your Controls?

Declined
Last Updated: 11 Jun 2021 11:59 by ADMIN
Created by: Nitin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

Ref. attached Image its show horizontal scrolling round with red color.

In business application more number of groups and menu item at that time horizontal scrolling very usefull as shown in the attached image

Declined
Last Updated: 06 Aug 2019 09:09 by ADMIN
Created by: Donald Norris
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0

A function that will return a thumbnail of the requested size and the page of a multipage pdf document.

 

Don

1 2 3 4 5 6