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: 26 Aug 2022 11:03 by ADMIN
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: 23 Jun 2022 09:19 by ADMIN
Declined
Last Updated: 21 Jun 2022 15:08 by ADMIN
Declined
Last Updated: 21 Jun 2022 15:06 by ADMIN
Declined
Last Updated: 21 Jun 2022 09:41 by ADMIN
Some references to skin resource files are hardcoded in Telerik.Web.UI.dll and don't depend of the web.config/appSetting "Telerik.Web.SkinsAssembly". The result is when you use a custom Skins Assembly and a Telerik control uses these hardcoded references on resource files, these resource files are not displayed because Telerik.Web.UI.dll is searching a resource file for a control as "Telerik.Web.UI.Skins.<Skin Name>.<Control>.<Resource filename>" and not as expected "<Skin Assembly Name>.<Skin Name>.<Control>.<Resource filename>.

It happens in the following controls:
- RadGrid: Only the column GridEditCommandColumn ButtonType="ImageButton" gives a invalid references on resource files for Edit.gif, Update.gif, Cancel.gif.
- RadDataPager: Images of SEO buttons, like PagingFirst.gif, etc.

The requested fix: to test if web.config/appSettings "Telerik.Web.SkinsAssembly" is available and not empty, and if yes, to use its value in place of the hardcoded "Telerik.Web.UI.Skins.dll".
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: 02 Mar 2022 13:26 by ADMIN
Declined
Last Updated: 02 Mar 2022 11:34 by ADMIN
Based on customer feedback:

The RadSiteMap documentation is lacking description for the CSS class names. Add description similar to the one present in other controls, RadMenu per say.
Declined
Last Updated: 24 Feb 2022 10:06 by ADMIN
ADMIN
Created by: Iana Tsolova
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
8
a TIFF viewer that can zoom in and out and possibly edit TIFFs.
Declined
Last Updated: 11 Oct 2021 09:38 by ADMIN
ADMIN
Created by: Jeff Fritz
Comments: 4
Category: UI for ASP.NET AJAX
Type: Feature Request
4
It would be helpful if the BarCode control could render DataMatrix barcodes
Declined
Last Updated: 01 Sep 2021 06:58 by ADMIN
RadCodeBLock and RadScriptBlock is not able to handle the server tags for all case scenarios, hence RadAjaxManager throws the exception mentioned in the title.
Declined
Last Updated: 10 Aug 2021 15:12 by ADMIN
Created by: Matt
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
1
I am doing a bin deployment on a web site for the following assemblies...

Telerik.Windows.Documents.Core
Telerik.Windows.Zip
Telerik.Windows.Documents.Fixed
Telerik.Windows.Documents.Flow
Telerik.Windows.Documents.Flow.FormatProviders.Pdf
Telerik.Windows.Documents.Spreadsheet
Telerik.Windows.Maths
Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml
Telerik.Windows.Documents.Spreadsheet.FormatProviders.Pdf

I recently used the upgrade wizard, and it successfully updated the versions for these assemblies, but it did not update the version numbers in the Web.config.  I manually removed the version number completely from Web.config, and it seems to work fine.
Declined
Last Updated: 10 Aug 2021 14:06 by ADMIN
Created by: kencox
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
The new scaffolding capabilities in ASP.NET web forms are great for productivity.

I'd like to see Telerik-specific scaffolding that substituted Telerik controls.
Declined
Last Updated: 14 Jun 2021 15:45 by ADMIN
Created by: Doug
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
An existing control looks like http://demos.devexpress.com/ASPxImageAndDataNavigationDemos/NewsControl/DataBinding.aspx
Where this control would allow you to express the UI of the aggregated feed data, where as the  feeds from RSS or  LinkedIn, YouTube etc can be sorted, grouped, stared or shared. 
So ideally feeds can be added at run time. Personal settings could be saved using existing tooling.
The ideal solution would allow the end user to customize their feeds.
Ideally it would degrade well onto a mobile  interface so you can flick thru all the feeds, flick to the left or right to dismiss or save. This is a bit more KendoUI
Declined
Last Updated: 14 Jun 2021 15:36 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
1
For all controls that have a dropdown, there should be a DropDownSettings part.

Namely, it should control: width, height as well as their min / max counterparts and css class. Perhaps z-index
1 2 3 4 5 6