I want to hide the close button on the DocumentContainer from RadDock as shown in the following image. I have no found any property for that.
Help me, plz!
Hi,
I'm trying to get one column sorted in DetailsView with a custom comparer. The other columns are fine with the default comparer.
How can I attach my custom comparer to the correct column?

I'm using raddropdownlist in openedge/progress developer studio. I'm able to bind and display data using this component.
I like to use the findstring method to find the selected value member (not the display member). I'm not able to find any documentation in regards to this function using openedge/progress.
I also was not able to find proper documentation using telerik components in openedge/progress. On the internet I was able to find many properties of this component which are NOT available in openedge/progress developer studio. Any ideas please where I should go to find my answers (I'm a progress developer)?
Thanks

Leonard
public class districts : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
#region Public Constructors
/// <summary>
/// Treeview class data definition
/// </summary>
/// <param name="districtId"></param>
/// <param name="parentDistrictId"></param>
/// <param name="description"></param>
/// <param name="childrenDistricts"></param>
public districts(string districtId, string parentDistrictId, string description, List<districts> childrenDistricts)
{
this.DistrictId = districtId;
this.ParentDistrictId = parentDistrictId;
this.Description = description;
this.ChildrenDistricts = childrenDistricts;
}
#endregion Public Constructors
#region Public Properties
public List<districts> ChildrenDistricts { get; set; }
public string Description { get; set; }
public string DistrictId { get; set; }
public string ParentDistrictId { get; set; }
public bool Checked { get; set; }
#endregion Public Properties
}

Hi,
on one PC (win7), when RadPrintPreviewDialog is maximized - there is a thick border around it, same effect with any RadForm. Is it possible to turn off theme for RadPrintPreviewDialog, so it looks like a basic .net form?
Thanks
Alex

I am working on a WinForms app using Telerik 2016 Q2. It contains several themes created with Visual Style Builder that are managed by a radThemeManager control accessing the XML files directly (not as a resource). The Visual Studio 2015 solution also contains a couple of Telerik-created themes (visualStudio2012LightTheme1 & office2013LightTheme1).
I would like to assign one of my custom themes to a radMessageBox control. Whatever I try, no theme is assigned. I first tried:
RadMessageBox.SetThemeName("customTheme");
RadMessageBox.Show(this, "messagebox text", "titleg", MessageBoxButtons.OK, RadMessageIcon.Info);The I tried putting this in the load event of the form:
ThemeResolutionService.ApplicationThemeName = "customTheme";Neither worked. I then tried:
RadMessageBox.SetThemeName("visualStudio2012LightTheme1"); //Telerik-supplied themeThis partially worked as expected. It did override the custom themes of my controls throughout the form, but the radMessageBox still did not receive the theme (it was still set to the default theme).
How can I apply a custom theme to a radMessageBox?
Thanks.

hi.
i want to have a fullscreen form with auto hide title bar like "Microsoft Remote Desktop" or so on.
is there a way to implement it with telerik winform components ?