Declined
Last Updated: 24 Jul 2025 06:48 by Matthias
Created by: Matthias
Comments: 5
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Hello Progress team,

we're using the HtmlChart and RadialGauge components of your Telerik for AJAX suite and are encountering some inconsistencies between the two.

To be able to use the exportable SVGs of those components server-side, we've extended your classes and added two asp:HiddenFields each, so we can post the SVG and the dimensions back to the server for further processing. (Setting the values is handled in a button OnClientClick JavaScript function, that's irrelevant to this thread.)

As of 2019, when we first introduced the respective feature in our software, the code looked like this:

  • Similar for both components
  • In both cases the additional HiddenFields get added to the Controls-List "OnInit" before the base.OnInit-event.
  • In both cases we had to override the "Render"-function to also render the HiddenField-Controls to the HTML.
public class ExportableRadHtmlChart : RadHtmlChart, INamingContainer
{
    private HiddenField _svgData = new HiddenField();
    private HiddenField _svgDimensions = new HiddenField();
    public ExportableRadHtmlChart()
    {
        _svgData.ID = "SVGData";
        _svgDimensions.ID = "SVGDimensions";
    }

    protected override void OnInit(EventArgs e)
    {
        Controls.Add(_svgData);
        Controls.Add(_svgDimensions);
        
        base.OnInit(e);
    }
    
    protected override void Render(HtmlTextWriter writer)
    {
        writer.RenderBeginTag(HtmlTextWriterTag.Div);

        base.Render(writer);

        _svgData.RenderControl(writer);
        _svgDimensions.RenderControl(writer);

        writer.RenderEndTag();
    }
}

and

public class ExportableRadRadialGauge : RadRadialGauge, INamingContainer
{
    private HiddenField _svgData = new HiddenField();
    private HiddenField _svgDimensions = new HiddenField();
    public ExportableRadRadialGauge()
    {
        _svgData.ID = "SVGData";
        _svgDimensions.ID = "SVGDimensions";
    }

    protected override void OnInit(EventArgs e)
    {
        Controls.Add(_svgData);
        Controls.Add(_svgDimensions);
        
        base.OnInit(e);
    }

    protected override void Render(HtmlTextWriter writer)
    {
        writer.RenderBeginTag(HtmlTextWriterTag.Div);

        base.Render(writer);

        _svgData.RenderControl(writer);
        _svgDimensions.RenderControl(writer);

        writer.RenderEndTag();
    }
}

With this code, we've been running the Telerik product version 2023.1.323.45.

 

Now, we've updated to Telerik product version 2025.1.416.462 and are experiencing the following inconsistencies:

  1. Using the same code as before, the HiddenFields of class "ExportableRadHtmlChart" render twice:


    Whereas previously, they've only rendered once:

    Removing the custom "Render"-function of the class "ExportableRadHtmlChart" resolves this issue. (Having duplicates of those HiddenFields actually causes issues on repeated PostBacks, as two HiddenFields at a time have the same ClientID and thus their values get packed as a comma separated list before transmission to the server, which in turn yields issues when parsing the SVG, which in reality are multiple comma separated SVGs.

    The SVG values are truncated in this view, but the dimensions paint a pretty clear picture, as to what's happening here after 4 PostBacks.) Despite requiring to make this adjustment to our software, we're glad, we can discard that custom "Render"-function.
  2. The "ExportableRadRadialGauge", on the other hand, still only renders the HiddenFields with the custom "Render"-function included. Can we expect a similar fix to the RadialGauge, s.t. we don't require to render the HiddenFields ourselves?

As I'm unsure of the "Theme name", I've put "ControlDefault". But I don't think that should matter too much. If it does, I'll try to find the correct value.

Kind regards,
Matthias

 


    Declined
    Last Updated: 24 Sep 2024 09:35 by ADMIN
    Created by: Michael
    Comments: 1
    Category: UI for ASP.NET AJAX
    Type: Feature Request
    0

    Hi,

    I want to convert pptx files to PDF files. Greetings
    Micha


    Declined
    Last Updated: 23 Sep 2024 11:14 by ADMIN
    When frozen column is used in the Grid, when user moves the cursor onto an out-of-the-screen element in the table header, the screen will not scroll automatically to make the element shown. When frozen column is not used, there's no such issue. This should be a bug of the RadGrid control. 
    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: 04 Aug 2025 15:05 by ADMIN

    While changing the value from RadCombox, meaning firing the SelectedIndexChanged, I am getting the below error.

    Exception information: 
        Exception type: NullReferenceException 
        Exception message: Object reference not set to an instance of an object.
       at MDM.WebApplication.MyPendingActions.rgrid_ItemDataBound(Object sender, GridItemEventArgs e)
       at Telerik.Web.UI.RadGrid.OnItemDataBound(GridItemEventArgs e)
       at Telerik.Web.UI.GridCommandItem.SetupItem(Boolean dataBind, Object dataItem, GridColumn[] columns, ControlCollection rows)
       at Telerik.Web.UI.GridTableView.CreateTopCommandItem(Boolean useDataSource, GridColumn[] copiedColumnSet, GridTHead thead)
       at Telerik.Web.UI.GridTableView.CreateControlHierarchy(Boolean useDataSource)
       at Telerik.Web.UI.GridTableView.CreateChildControls(IEnumerable dataSource, Boolean useDataSource)
       at System.Web.UI.WebControls.CompositeDataBoundControl.PerformDataBinding(IEnumerable data)
       at System.Web.UI.WebControls.DataBoundControl.OnDataSourceViewSelectCallback(IEnumerable data)
       at Telerik.Web.UI.GridTableView.PerformSelect()
       at Telerik.Web.UI.GridTableView.DataBind()
       at Telerik.Web.UI.RadGrid.AutoDataBind(GridRebindReason rebindReason)
       at Telerik.Web.UI.RadGrid.OnLoad(EventArgs e)
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Control.LoadRecursive()
       at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint).

    When trying on localhost SelectedIndexChanged of RadCombobox is getting fired and rgrid_NeedDataSource of RadGrid is not fired but when deployed on IIS, the scenario is opposite, SelectedIndexChanged is not fired but rgrid_NeedDataSource is getting fired.

    Please help.

    Also another thing, I wanted to understand how to use licenses.licx file in our project for telerik dll version 2013.1.314.45?

    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: Francesco
    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.
    1 2 3 4 5 6