I want to change cursor from default to hand cursor when I hover cursor over the rectangle showing the color of the legend item.
How to achieve this?
I've followed an example I found on your site for creating a custom gridview column.
https://docs.telerik.com/devtools/winforms/gridview/cells/creating-custom-cells
I was able to get it to work and populate, but only by manually editing the designer document of the form in which the grid was located. My column type, however, does appear on my list of column types but after adding it, and when I try closing the grid design window I get an error. Can you tell me what I'm doing wrong? Attached a screen shot showing my columntype in the list, the column added (column1), and the error message I received. Thanks for any help you can give me.

Hi,
I'd like to change the initial directory used by Open and Save buttons. An InitialDirectory property like in OpenFileDialog would be perfect.
Thanks for your help
Hi. I'm looking to use the RadTrackBar as a selector for hours. For example, far left would be 0700 (7am) and far right would be 1400 (2pm).
I cannot figure out how to disable/turn off/colorize the TrackBarIndicatorElement behind the slider. I want just the bar with the slider. As the user moves it, there should not be any color displayed in the bar. Is that possible?
Hi,
i am trying to set focus on combobox during form shown event. I can't see method Focus(). Is there anything i am missing?
Version of control is : 2016.1.112.40
please help
Thanks
Binu


Hello.
I have a problem with the scrollbars.
I have 2 Usercontrols with one radpageview.
The first code works.
The second don´t works.
There are no Scrollbars.
Please help.
Private Sub Hauptmenue_Shown(sender As Object, e As EventArgs) Handles Me.Shown Dim _tablet As TetraFMS.FMSTablet 'Läd das Hauptfenster in die Anwendung _tablet = Controls("ucFMSTablet") If _tablet Is Nothing Then _tablet = New FMSTablet() _tablet.Name = "ucFMSTablet" Me.Controls.Add(_tablet) _tablet.Dock = DockStyle.Fill _tablet.HorizontalScroll.Enabled = True _tablet.VerticalScroll.Enabled = True _tablet.BringToFront() Else _tablet.Dock = DockStyle.Fill _tablet.BringToFront() End If
Private Sub RibbonTabDesigner_Click(sender As Object, e As EventArgs) Handles RibbonTabDesigner.Click Dim _designer As TetraFMS.FMSEditor _designer = Controls("ucFMSEditor") If _designer Is Nothing Then _designer = New FMSEditor() _designer.Name = "ucFMSEditor" Me.Controls.Add(_designer) _designer.Dock = DockStyle.Fill '_designer.AutoScroll = True _designer.HorizontalScroll.Enabled = True _designer.VerticalScroll.Enabled = True _designer.BringToFront() _designer.Refresh() Else '_designer.AutoScroll = True _designer.HorizontalScroll.Enabled = True _designer.VerticalScroll.Enabled = True _designer.BringToFront() _designer.Refresh() End IfEnd Sub
Dim template As New GridViewTemplate()template.BeginUpdate()template.DataSource = Me.oConsulta.Select_DS("56").Tables(0)grReportsSolicitado.MasterTemplate.Templates.Add(template)Dim relation As New GridViewRelation(grReportsSolicitado.MasterTemplate)relation.ChildTemplate = templaterelation.RelationName = "Id_Report"relation.ParentColumnNames.Add("Id_Report")relation.ChildColumnNames.Add("Id_Report")grReportsSolicitado.Relations.Add(relation)template.EndUpdate()Me.grReportsSolicitado.EndUpdate()Me.grReportsSolicitado.Refresh()HI,
I have a radPopupEditor control and a radPopupContainer control .Inside radPopupContainer , i placed a radGridView. In radGridView there are a lot of data and have a scroll in it , the problem is when i tried to scroll inside the radGridView the popub is closing and the radGridView scroll doesnt works . how can i solve the problem.

Hi,
Spent some time today with the RadTreeView and can't figure out why a node is removed fine from the DS when using
radTreeView1.DisplayMember = "Name";
radTreeView1.ValueMember = "Id";
But not when using:
radTreeView1.DisplayMember = "Name\\ChildName";
radTreeView1.ChildMember = "list\\ChildObjects";
Regards,
Thomas
See code below:
namespace RadTreeViewTest{ public partial class RadForm1 : Telerik.WinControls.UI.RadForm { BindingList<MyObject> list = new BindingList<MyObject>(); int counter = 0; public RadForm1() { InitializeComponent(); list.ListChanged += List_ListChanged; radTreeView1.DataSource = list; radTreeView1.DisplayMember = "Name\\ChildName"; radTreeView1.ChildMember = "list\\ChildObjects"; //radTreeView1.DisplayMember = "Name"; //radTreeView1.ValueMember = "Id"; } private void List_ListChanged(object sender, ListChangedEventArgs e) { radLabel1.Text = ""+list.Count; } private void radButton1_Click(object sender, EventArgs e) { list.Add(new MyObject(counter++, "Test " + counter, 5)); } } public class MyObject : INotifyPropertyChanged { private int id; public int Id { get { return id; } set { SetField(ref id, value, "Id"); } } private string name; public string Name { get { return name; } set { SetField(ref name, value, "Name"); } } private int counter; public int Counter { get { return counter; } set { SetField(ref counter, value, "Counter"); } } public BindingList<ChildObject> ChildObjects { get; set; } public MyObject() { } public MyObject(int i, string n, int c) { ChildObjects = new BindingList<ChildObject>(); this.Id = i; this.Name = n;this.Counter = c; ChildObjects.Add(new ChildObject(i, "ghejwgk 1")); ChildObjects.Add(new ChildObject(i, "ghejwgk 2")); } public event PropertyChangedEventHandler PropertyChanged; protected virtual void OnPropertyChanged(string propertyName) { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } protected bool SetField<T>(ref T field, T value, string propertyName) { if (EqualityComparer<T>.Default.Equals(field, value)) return false; field = value; OnPropertyChanged(propertyName); return true; } } public class ChildObject { public int ParentId { get; set; } public string ChildName { get; set; } public ChildObject(int i, string n) { this.ParentId = i; this.ChildName = n; } }}