Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
Build cross-platform mobile apps using Visual Studio and .NET. Register for the online webinar on 03/27/2014, 11:00AM US ET.. Seats are limited.
void
radGridView1_CellEditorInitialized(
object
sender, GridViewCellEventArgs e)
{
RadMultiColumnComboBoxElement mccb = e.ActiveEditor
as
RadMultiColumnComboBoxElement;
if
(mccb !=
null
)
mccb.EditorControl.ViewCellFormatting -= EditorControl_ViewCellFormatting;
mccb.EditorControl.ViewCellFormatting += EditorControl_ViewCellFormatting;
}
EditorControl_ViewCellFormatting(
sender, CellFormattingEventArgs e)
e.CellElement.BorderBoxStyle = BorderBoxStyle.FourBorders;
e.CellElement.BorderTopWidth = 0;
e.CellElement.BorderBottomWidth = 0;
e.CellElement.BorderLeftColor = e.CellElement.BorderColor;
e.CellElement.BorderRightColor = e.CellElement.BorderColor;