All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
protected
void
RadGrid1_ItemDataBound(
object
sender, GridItemEventArgs e)
{
if
(e.Item
is
GridEditableItem && e.Item.IsInEditMode)
GridEditableItem eitem = (GridEditableItem)e.Item;
RadComboBox ComboBox = (RadComboBox)eitem[
"d"
].Controls[0];
ComboBox.DropDownCssClass =
"color"
;
}
<style type=
"text/css"
>
.color
background-color
:Red ! important;
</style>