
Connectors don't appear when ContainerShape's template style customize.
In detail, ContainerShape style is my own Customized one. the style has setter "Template", not "ContentTemplate".
when used Customized ContentTemplate, then appear Connectors. but used Customized Template, doesn't appear Connectors.
Though it doesn't appear Connectors, Can connect links with other shapes on behind code.
I think it that ContainerShape has connectors, but doesn't appear connector because customize using Template, not ContentTemplate.
but I must use a customized template......
Please, how can I appear Connectors, when I use style to customizing Template.
Always Thank you for your help.

I am doing data virtualization using VirtualQueryableCollectionView.
I pass there IQueryable from EF.
var db = new ProductionContext();IQueryable cards = db.Cards.OrderBy(x => x.CardId);var view = new VirtualQueryableCollectionView(cards) { LoadSize = 50 };cardsRadGridView.ItemsSource = view;Its works fine. But how to make it asynchronous? (asynchronous loading, search, filtering) I searched for examples but found only examples for WCF like bellow
https://www.telerik.com/blogs/telerik-data-virtualization-wcf-ria-services-and-visual-studio-async-ctp?_ga=2.125533513.2135094116.1586865074-1480584776.1567419497
I tried to do the same for the EF
var db = new ProductionContext();IQueryable cards = db.Cards.OrderBy(x => x.CardId);Loaded += async (o, args) =>{ var view = new VirtualQueryableCollectionView<Card> { LoadSize = 50, VirtualItemCount = await TaskEx.Run(() => cards.Count()) }; view.FilterDescriptors.CollectionChanged += async (s, e) => { view.VirtualItemCount = await TaskEx.Run(() => cards.Where(view.FilterDescriptors).Count()); }; view.FilterDescriptors.ItemChanged += async (s, e) => { view.VirtualItemCount = await TaskEx.Run(() => cards.Where(view.FilterDescriptors).Count()); }; view.ItemsLoading += async (s, e) => { var queryToLoad = cards .Sort(view.SortDescriptors) .Where(view.FilterDescriptors) .Skip(e.StartIndex) .Take(e.ItemCount); cardsRadGridView.IsBusy = true; view.Load(e.StartIndex, await TaskEx.Run(() => queryToLoad.ToIList())); cardsRadGridView.IsBusy = false; }; cardsRadGridView.ItemsSource = view;};but it does not work(
Where can one find a good example of implementing this?


I am rendering 50,000 data points per seconds one 3 charts my UI freezes at that point... I am running 3 charts updating in real time with new data points coming in every second so I add them to the collection, I am implementing data virtualization for the scrolling but when scrolled out and a large number of samples is where I see the freeze. They are scatter series and I am not using a point template I have rendering set to bitmap and "Batch" Is there any other ways to significantly improve the performance? My process is only using 20-30% CPU and 400-600mb ram I have tried it on a box with a GPU also with no better result... I am stumped on this one guys.
Thanks!

When I click the button many times, the open and close buttons don't work.
How should I solve the mistake?

Hi Team,
We have a parent window (RadRibbonWindow) which is being executed in a different app domain and then multiple child app domains opens a dialogs ( RadWindows).
Problem:
We can not set parent window from child windows as they are on different app domains. In MS controls we have functionality of WindowInteropHelper that can be used to define an owner but in case of RadWindow we have a content control.
I have tried to set the content from respective app domin like (RadButton) to be parent which is also from related app domin but displayed in the main application but things are not working.
Any Ideas how to manage it.
Regards

Hi Team,
I wanted to use the GridViewMultiColumnComboBoxColumn in my grid and bind it to data set which contain medium amount of data. The memory consumption is way more that I expected also it is taking alot more time to display the drop down. I switch to MultiColumnComboBox using template and it is working way better and can not see memory spikes.
Can you please help me on this. I am currently using Telerik version "2020.1.218"
