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: 28 Dec 2021 09:41 by ADMIN
Created by: Dan Avni
Comments: 1
Category: DropDownTree
Type: Feature Request
0
When the RadDropDownTree contains a lot of checked items, The tooltip of the control shows all items delimited with a semicolon. For large lists it is useless (especially if the page has RadToolTip which shows a huge tooltip on screen blocking the UI). Please add an option on the control properties to disable the control from updating it's tooltip (title attribute) when items are checked
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: 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: 17 Sep 2020 10:49 by ADMIN
Created by: Albert
Comments: 1
Category: PdfViewer
Type: Feature Request
2

When viewing a PDF file in the RadPdfViewer, hyperlinks in the file are not clickable.

Can clickable hyperlinks be added to RadPdfViewer?

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: 18 Aug 2020 15:37 by ADMIN

Add a new property to HtmlChart as well as Gauges to AutoResize on parent control size change. A precondition to this is Height and Width of the control must be set in percentages of the parent control.

To implement this we can either use window.onresize or ResizeObserver.

Reference

Reference 2

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:15 by ADMIN
Created by: Lee
Comments: 5
Category: Grid
Type: Feature Request
0
Can the RadGrid generate columns from the client data source schema, it's painful having to manually declare the columns both in the RadGrid and the schema, again can something be done to make this control more user friendly?
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: 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: 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

Declined
Last Updated: 11 Aug 2020 17:58 by ADMIN

Please refer to the ticket for more details.

 

Declined
Last Updated: 15 Apr 2020 12:33 by ADMIN
Created by: MikeK
Comments: 3
Category: UI for ASP.NET AJAX
Type: Feature Request
3

We could use a new calendar control that works differently than the scheduler, or any existing calendar control. 

Overview of features and how it would work:

  • User selects a month, the calendar auto draws the month as a calendar view with options to set day of week as short, medium or full length.
  • The calendar has an input field which can handle validation if needed. Validation example:
    • Only accept integers
    • In logic, if X = Whatever, then only allow input value of 1.

  • Treat as an array so we could loop through the control and read each value for saving to database or to take action on from code.

  • Example shown below. This is dynamically creating using tables and HTML. Not the nicest looking, and a pain to reuse anywhere. We could make use of this type of control in a lot of applications.

     

 

Example

Declined
Last Updated: 26 Feb 2019 06:47 by ADMIN

The scenario is the same web-page should render perfectly on all kind of devices(mobile, tablet, desktop, laptop, projector, and high-resolution TV etc.)

The Bar width is set using Size property for Minor tick. The Pointer Width is set using Size property of Pointer.

Now that the sizes for bar and pointers are fixed, we cannot change it with changing screen resolution.

SVG has the property for scaling itself based on the design size and actual size on the client (ViewPort Size).

If something like design width and design height property is added, it will be really helpful to scale the same control and use it on all kind of devices with resolutions ranging from 320 x 180 to 4K UHD displays.

 

Declined
Last Updated: 04 Jun 2020 10:39 by ADMIN
ExcelML currently does not support multiple column headers (aka ColumnGroups). This was first requested in the forms back in 2012 and no feature request was created for ExcelML. It is important that ExcelML support ColumnGroups as Excel does support this functionality.
Declined
Last Updated: 29 May 2020 14:52 by ADMIN
Created by: Jukka
Comments: 2
Category: AsyncUpload
Type: Feature Request
2
I would be nice to gain more control over radasyncupload's upload behavior when using database as storage for uploaded files.

Consider this use case. You have file management web-app that uses SQL database as storage for uploaded files. In SQL database you use Filestream enabled table to store the uploaded file data. You like to allow your app users to upload multiple big files > 100 Mt at once. And you have limited disc space on your web server hosting your app. So you don't want to buffer those uploaded files on your web server in any point of the upload process.

To be able to do so radasyncupload needs to be able to stream uploaded files to the SQL database as straight as possible. Chunk by chunk. 

radasyncupload already has feature that allows you to use your own generic handler to handle some of the upload process. It just needs expose some of those events that happens before process-event (maybe ProcessRequest?). So developer can start handling the HttpPostedFile's InputStream at the begining of the upload and stream it directly to the database. Like one can do with the regular upload controls like so:

Public Sub ProcessRequest(ByVal context As HttpContext) Implements IHttpHandler.ProcessRequest

	Dim hpf As HttpPostedFile
	
	For i = 0 To context.Request.Files.Count - 1
	
		hpf = context.Request.Files.Item(i)
		
		...
		Using Command As SqlCommand = New SqlCommand(String.Concat("INSERT INTO Dokuments(DokumData...) values (@DokumData...)"), connection)
		'Other params

		Command.Parameters.Add("@DokumData", SqlDbType.Binary, -1).Value = hpf.InputStream
		connection.Open()
		Command.ExecuteScalar()
		connection.Close()
		
	Next

End Sub
1 2 3 4 5 6