
Hi,
since some days, I got the title's related null reference exception when I click on item on RadListView control in DetailView mode.
Have you any idea? If i use the same control with the same data inside it but set mode to ListView al works without any problem (but I can't do this, due to a complex series of routine formatting details view elements according to the type and the structure of the data inside of it). The exception was thrown inside Telerik.WinControl.UI, on the event indicated. I cannot intercept any event before the crash, so the application quit unexpectedly.
Routing causing the exception is:
private void lvRecords_CurrentItemChanged(object sender, ListViewItemEventArgs e)
{
if (e.Item != null)
CaricaDettaglio(e.Item.DataBoundItem as BaseEntity<int>);
else
{
spDetails.Collapsed = true;
spGestioneCustom.Collapsed = true;
}
}
where, by the call CaricaDettaglio, I made some changes on the form, loading some data into other controls based on the e.Item.DataboundItem, an entity of my application. I've also noticed that if I double click on form bar to resize it, if the mouse passes through the control during the form resize, the same event was fired, with the same result, without any further click on it, and this is really unattended.
DLL version is 2016.2.608.40 but I don't want updgrade project to latest Telerik Library if not necessary.
Have you any idea or suggestion?
Thanks in advance.

I can change split panel collapse direction to left or right like this. But can I have both splitter buttons (left and right direction) on RadSplitContainer with only 2 SplitPanels?
I noticed that if the RadSplitContainer had more than 3 panels, the splitter button showed 2 buttons (left and right direction)





Hello guys! I have a small deal with DropDownList...
I need to create a path selector, and this is how I see it:
- when I'm writing "C:\" DropDown starts showing AutoComplete options
- Paths that were in usage (it will be decided after some program runs) it will save it to its DataSource.
Standard Combox can do all of theese requirements, It will be like:
AutoCompleteSource = AutoCompleteSource.FileSystemDirectories
and after save the "good" paths to DataSource.
I find somthing same in the Telerik lib - a DropDownList but it hasn't property AutoCompleteSource where I can set AutoCompleteSource.FileSystemDirectories...
I continued to search for solutions and found RadMaskedEditBox that has AutoCompleteSource like I want, but has no DropDownMenu for saving used pathes.
If there other solutions that I didn't see? I don't want to write algorithm for DropDownList which will AutoComplete directories, I think there is a more beautiful solution.
Thanks!

I tried searching for this but apparently I'm the only one with this issue right now.
So here's the very basics: My app has a radform with a button. You click this button and it creates another RadForm, but this one is a FormBorderStyle FixedToolWindow. When I hit Alt-Tab and see it, it's not the icon I assigned to the Form. (via the Designer with the Form Icon property) It's the default app Icon.
Attaching what it looks like. (it's the selected one) This icon is the same in the Taskbar as well. The Application Icon shows up just fine though (That's the AC one in the attached pic)
How do I change the form Icon?
VS 2015
Windows 8.1 64bit
Telerik 17.1.221.0
