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
AI Coding
AI Engineering
Additional Tools
Enhance the developer and designer experience
Testing & Mocking
Debugging
AI-Enhanced UI Tools
CMS
Free Tools
Support and Learning
Docs & Resources
Productivity and Design Tools
Hi
It seems that s deals with k-picker but how to do good css ?
Hi Jean-François,
To hide the TelerikDropDownList border upon clicking, you can use the following CSS style:
<style> .k-picker-solid.k-focus { box-shadow: none; } </style> <TelerikDropDownList Data="@myDdlData" TextField="MyTextField" ValueField="MyValueField" Width="300px" @bind-Value="selectedValue"> </TelerikDropDownList> @code { public class MyDdlModel { public int MyValueField { get; set; } public string MyTextField { get; set; } } int selectedValue { get; set; } = 3; IEnumerable<MyDdlModel> myDdlData = Enumerable.Range(1, 20).Select(x => new MyDdlModel { MyTextField = "item " + x, MyValueField = x }); }
Please run and test the above sample to see whether the result matches what you are looking for.
Regards, Hristian Stefanov Progress Telerik