Product Bundles
DevCraft
All Telerik .NET and Kendo UI JavaScript components and AI Tools in one package.
Kendo UI
Bundle of AI Tools plus four JavaScript UI libraries built natively for jQuery, Angular, React and Vue.
Build JavaScript UI
Javascript
Telerik
Build modern .NET business apps
.Net Web
Cross-Platform
Desktop
Reporting and Documents
AI for Developers & IT
Ensure AI program success
MCP Servers
AI for UI
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
UI Tools
CMS
Free Tools
Support and Learning
Productivity and Design Tools
Hi
I want a Not selectable ListViewElement
by not selectable , I mean you can not select it's items
I have it as custom item in a parent listview
I manged to do this by following code and overriding VisualItemFormatting(
void radListView1_VisualItemFormatting(object sender, Telerik.WinControls.UI.ListViewVisualItemEventArgs e) { e.VisualItem.DrawFill = false; e.VisualItem.DrawBorder = false; }
public
RadForm1()
{
InitializeComponent();
radListView1.SelectedItem =
null
;
radListView1.SelectedItemChanging += RadListView1_SelectedItemChanging;
}
private
void
RadListView1_SelectedItemChanging(
object
sender, Telerik.WinControls.UI.ListViewItemCancelEventArgs e)
e.Cancel =
true