Unplanned
Last Updated: 02 Oct 2025 17:42 by Kevin
Created by: Kevin
Comments: 0
Category: UI for WPF
Type: Feature Request
2

Hi Team,

I have set up SSO and it's great so far. I have a feature request that would make it even better, and solve many large enterprise needs, is to have a way to integrate SCIM based license provisioning as well.

Right now, you still do need to manage licensed users on the Manage Licensed Users portal. A License Holder or License Manager needs to add a Developer to the account and assign them a license.

With SCIM integration, we could better manage the users and licensing on a larger scale, with automation and oversight on the enterprise-managed SSO identity.

Thank you,

Kevin

Unplanned
Last Updated: 02 Oct 2025 12:01 by Systeem
Created by: Troy
Comments: 2
Category: SyntaxEditor
Type: Feature Request
3

I do have some feedback on this component. I love it, but of course there are some areas where improvement can be made. For instance, in the screenshot below, I have highlighted some words where improvement can be made.

  1. ‘1,2,3,5’ – Literals in SSMS are Red
  2. ‘ER – 100% OF MEDICARE’ – OF is highlighted in Blue. It is contained in a literal and shouldn’t be highlighted
  3. ISNULL – Is a function and should be highlighted in Blue
---- - It looks like that the tagger is only looking for 2 – only. If there are more than 2 in sequence, it doesn’t identify it as a comment and should
In Development
Last Updated: 30 Sep 2025 08:38 by ADMIN
When importing an HTML string that contains an image, which has an align attribute, the image creation logic on import does not take this attribute's value and apply it.
In Development
Last Updated: 30 Sep 2025 08:05 by ADMIN
When the pane tabs of a RadPaneGroup are reordered in a quick succession, a NullReferenceException is raised.
In Development
Last Updated: 29 Sep 2025 08:42 by ADMIN

Currently, the drop down of RadComboBox contains only the RadComboBoxItems and the Clear Selection button. Add new content presenter that allows you to include extra visuals, like buttons or text.

The feature is similar to the AdditionalContent of RadTabControl. 

In Development
Last Updated: 26 Sep 2025 10:42 by ADMIN

TypeAccessException occurs in .NET Framework projects when using internal class for the data point models. The error doesn't occur in .NET 8 projects.

dsa

System.TypeAccessException: 'Attempt by method 'DynamicClass.Telerik_DynamicGetter_Argument(System.Object)' to access type 'WpfApp29.ChartPoint' failed.'
at Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.PropertyNameDataPointBinding.GetValue(object instance) 	Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.ScatterSeriesDataSource.InitializeBinding(Telerik.Windows.Controls.ChartView.DataPointBindingEntry binding)	Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.ChartSeriesDataSource.GenerateDataPoint(object dataItem, int index) 	Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.ChartSeriesDataSource.BindCore(System.Collections.IEnumerable source)
Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.ChartSeriesDataSource.Bind(System.Collections.IEnumerable itemSource)
Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.ChartSeriesDataSource.Rebind(System.Collections.IEnumerable oldSource, System.Collections.IEnumerable newSource, bool shouldUpdateSelectedPoints) Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.ChartSeriesDataSource.ItemsSource.set(System.Collections.IEnumerable value) Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.ChartSeries.InitDataBinding() Line Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.ScatterPointSeries.InitDataBinding() Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.ChartSeries.OnApplyTemplate() Telerik.Windows.Controls.Chart.dll!Telerik.Windows.Controls.ChartView.PointTemplateSeries.OnApplyTemplate()

To work this around, upgrade the target framework of the project to .NET 8. Or use the GenericDataPointBinding class for the binding properties of the series (XValueBinding, YValueBinding, etc.), instead of the default PropertyNameDataPointBinding.


In Development
Last Updated: 25 Sep 2025 09:41 by ADMIN

The selection a RadComboBox hosted in RadDataForm gets cleared on commit changes. This happens when the RadComboBox is added in the EditTemplate and its IsEditable is set to True. Committing the edit clears the TextBox of the ComboBox, which clears the selection.

To work this around, subscribe to the EditEnding event of RadDataForm and clear the DataContext of the RadComboBox element.

  private void RadDataForm_EditEnding(object sender, Telerik.Windows.Controls.Data.DataForm.EditEndingEventArgs e)
  {
      var dataForm = (RadDataForm)sender;
      var myField = dataForm.ChildrenOfType<DataFormDataField>().FirstOrDefault(df => df.Name == "myField");
      if (myField != null)
      {
          var comboBox = (RadComboBox)myField.Content;
          comboBox.DataContext = null;
      }
  }

In Development
Last Updated: 24 Sep 2025 16:13 by ADMIN
Pressing the Home and End keys selects the first/last items even if they are collapsed/hidden.
In Development
Last Updated: 23 Sep 2025 07:10 by ADMIN
When selecting multiple cells, clicking on the current active cell (which is selected) does not clear its selection but moves the active cell to one of the other cells from the selected range.
In Development
Last Updated: 19 Sep 2025 08:39 by ADMIN
Memory leak is present when removing items from the ItemsSource collection.
Unplanned
Last Updated: 17 Sep 2025 14:55 by Martin Ivanov
Add support for export and import of the TextWrapping setting of the FloatingImageBlock to HTML. 
In Development
Last Updated: 17 Sep 2025 14:02 by ADMIN
Having a RadTabControl in a RadPane's content, showing it in the DockingNavigator, may appear incorrectly positioned.
Unplanned
Last Updated: 17 Sep 2025 11:48 by Marco
Add support for displaying the full length of an appointment when its length is spread across multiple days.
Declined
Last Updated: 12 Sep 2025 09:42 by ADMIN
Created by: Kristen
Comments: 3
Category: UI for WPF
Type: Feature Request
3

At this time, Telerik UI for WPF distributes libraries build for each TFM -> WPF45, NetCore and NET50.

 

If there was a way that UI for WPF could compile some of those libraries .NET Standard 2.0 compatible, it would allow for the developers making the transition from .NET Framework to .NET Core/.NET5 a but easier because they will be able to share the reusable Telerik code in a class library consumed by both WPF45 and WFP50 projects

Declined
Last Updated: 12 Sep 2025 09:31 by ADMIN
Created by: Darren
Comments: 1
Category: UI for WPF
Type: Feature Request
1

Are there any plans to release a Visual Studio 2022 theme for WPF?  The Winforms UI has this theme, and I would like to have it for WPF as well.

Are there other themes on the roadmap that you could share?

 

Thanks!

--Darren

Declined
Last Updated: 12 Sep 2025 09:31 by ADMIN

i have UriVectorTileMapProvider and i have files pbf.

When i create my style file json i cant get render corectly.

i have two example:

1)one in my style json i have three layers:buildings,military,hospital (ex1.png)

When I use such a file, one polygon is lying with buildings on top where the other polygon covers the buildings

 "layers": [
    {
      "id": "landcover_wood",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "landuse",
      "filter": [
        "==",
        "class",
        "military"
      ],
      "layout": {
        "visibility": "visible"
      },
      "paint": {
        "fill-color": "green"
      }
    },
    {
      "id": "landcover_hos",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "landuse",
      "filter": [
        "==",
        "class",
        "hospital"
      ],
      "layout": {
        "visibility": "visible"
      },
      "paint": {
        "fill-color": "yellow"
      }
    },
   ,
    {
      "id": "building",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "building",
      "minzoom": 12,
      "maxzoom": 24,
      "paint": {
        "fill-color": {
          "stops": [
            [
              13,
              "yellow"
            ],
            [
              16,
              "red"
            ]
          ]
        }
      }
    }
  ]

2) if i have this style json, telering dont recognize color for every layers like hospital or military i have black (ex2.png)

"layers": [

    
    {
      "id": "landuse_classes",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "landuse",
      "minzoom": 7,
      "layout": {
        "visibility": "visible"
      },
      "paint": {
        "fill-color": [
          [
            "military"
          ],
          "green",
          [
            "hospital"
          ],
          "red",
          "purle"
        ]
      },
      "metadata": {},
      "filter": [
        "all",
        [
          "in",
          "class",
          "military",
          "hospital"
        ]
      ]
    },
    
    {
      "id": "building",
      "type": "fill",
      "source": "openmaptiles",
      "source-layer": "building",
      "minzoom": 12,
      "maxzoom": 24,
      "paint": {
        "fill-color": {
          "stops": [
            [
              13,
              "yellow"
            ],
            [
              16,
              "red"
            ]
          ]
        }
      }
    }
  ]
}

 

whats wrong with my json file style?

Declined
Last Updated: 12 Sep 2025 09:27 by ADMIN
Created by: Christopher
Comments: 1
Category: GridView
Type: Feature Request
0
We are using telerik:RadGridView.RowDetailsTemplate in our GridView and we need the ability to expand or contract all rows at the press of a button.  As in the demo code under Hierarchy, we need to do this from our ViewModel.  Can the IsExpandedBinding be implemented for this use case in addition to when using hierarchical data?  
Completed
Last Updated: 12 Sep 2025 09:20 by ADMIN
Release LIB 2019.3.923

Bind a grid to a DataView

Start editing and change the values of a few cells.

Press Escape twice to cancel the edit of the entire row.

Expected: the values return to the old values

Actual: the values remain the last entered ones

Declined
Last Updated: 12 Sep 2025 09:12 by ADMIN

I have created this timeline control out of a combination of different controls.  But I get asked for this same kind of setup from different companies for different reason. I have created this control using your TreeListView to show the headers in the hierarcy while for Layer Num items, there is a list to the right which holds a list of MediaItem objects.  It works but not very efficient and is missing much key functionality. And I thought because you already have controls that are similar, it wouldn't be a huge reach for you to make on like this.

So there could be two modes for this.  The editing mode where the user is dragging/dropping media items on each layer item, rearranging, setting the length of media, etc.  They could then hit PLAY like a Movie Maker and see a preview on a different control of what is being played.  Once this is saved, it could be used in another way.

So in the readonly mode, all the items would be feed in as a hierarchtial collection.  It would decribe how many levels there are and the names and order of the items.  And then it would also have all the MediaItems related to each Layer Num.  And then it would constantly be fed what the current time is related to this batch of items playing.  The user doesn't hit PLAY in this mode but rather just sees a read only version of what is being played and watch the line goes across.

I think this would be a very welcomed control to your lineup.   Because anyone who wants to make a media editing program, audio editing program, and even showing a schedule for items that happens every 30 seconds in different locations while getting a constant status of the current time would find this  invaluable.

 

Declined
Last Updated: 12 Sep 2025 09:11 by ADMIN
Created by: Andrew
Comments: 1
Category: UI for WPF
Type: Feature Request
1
Please can we have a TaskBarButton for WPF (currently only on WinForms)
1 2 3 4 5 6