Hello,
RadGridView supports self referencing hierarchy mode to mimic multi-column TreeList behavior. Is it possible to do the same with VirtualGrid?

Hi,
I need a control like windows TabControl for my project. For the radRibbon, I cannot make it dock to the whole layout and have full page tab containers where I can put all of my contents. I need same functionality like TabControl.
Medical App is providing the same functionality of tab which I need.
Thanks

I would hide a column before copy selected items.
Generally I use first column as Icon, but I have to remove it before copying.
How can I do?
Is exists a specific event to use before call Copy method?
ItemsRadGridView.SelectAll()ItemsRadGridView.ClipboardCopyMode = GridViewClipboardCopyMode.EnableAlwaysIncludeHeaderTextItemsRadGridView.Copy()
radDock Position = Fill, Top, Bottom......
I want the loaded form will be in floatting mode without drag and drop it in the radDok.
I tried with the below code but I am not satisfied:
<p>var frmBrand = new FormBrand();<br>frmBrand.Text = @"Brand:: ";v<br>HostWindow host = radDock1.DockControl(frmBrand, new DockPosition()); </p><p>//HostWindow host = radDock1.DockControl(frmBrand, DockPosition.Left)<br>host.DockState = DockState.Docked;<br>radDock1.AutoDetectMdiChildren = true;<br><br>frmBrand.Show();</p>
Hi,
I've used your demo solution to understand how cell border color errors works.
I've found a bug if you populate your gridview with enough data to have a vertical scrollbar.
When you scroll down enough to hide first rows, when you scroll up to see the rows, it seems there's a glitch on some cells like you see in the screenshot.
Regards


My form having a MultiColumn ComboBox , (version 2016.1.112.40 ) the data bound it it is long, 500+ columns. When i press down arrow next to text area, popup is flashing and dismisses but when i double click it appears.
While debugging i realize drop down closing event is being fired due to some 'bubble event / mouse down. What is happening?, The form has lot of other non Rad controls. But control focus remains intact when this happens.
Please help.
Here is my code for initializing it.
01.var productService = UnityContainer.Resolve<ProductService>();02. var productCodes = new List<DAL.Model.Product>();03. var productCodeList = await productService.GetAllProductCode(null);04. 05. if (productCodeList.Any())06. {07. productCodeList = productCodeList.DistinctBy(x => x.ProductCode).ToList();08. productCodeList = productCodeList.Where(x => x.ProductStatusID != null).OrderBy(x => x.ProductCode).ToList();09. productCodeList.RemoveAll(x => x.IsDevice == true && x.ProductStatusID == 0);10. productCodes.AddRange(productCodeList);11. }12. var productList = productCodes.Select(x => new CustomComboSourceDto13. {14. Id = x.ProductID,15. Name = x.ProductCode.ToUpper(),16. Description = x.ProductDescription17. }).ToList();18. 19. productList.Insert(0, new CustomComboSourceDto { Id = -1, Name = string.Empty, Description = string.Empty });20. comboBoxProductCode.DataSource = productList;21. 22. FilterDescriptor descriptor = new FilterDescriptor(this.comboBoxProductCode.DisplayMember, FilterOperator.StartsWith, string.Empty);23. this.comboBoxProductCode.EditorControl.FilterDescriptors.Add(descriptor);

Dear Telerik,
I am using pivotGrid and pivotFieldList
I am having some size frequency data where all the sizes fall into different size classes. I want a continuous set of size classes but as no lengths exists for some size classes, I am getting gaps in the size classes.
Please have a look at the attached files. You will see that the size classes are missing between 3 and 8 are more.
Your help in getting a consistant continuous x axis is appreciated.
Thanks,

