or
| ConditionalFormattingObject obj = new ConditionalFormattingObject("MyCondition", ConditionTypes.Greater, "30", "", true); |
| obj.CellForeColor = Color.Red; |
| obj.RowBackColor = Color.SkyBlue; |
| this.radGridView1.Columns[1].ConditionalFormattingObjectList.Add(obj); |
| private void grdTWatchHotList_RowFormatting(object sender, RowFormattingEventArgs e) |
| { |
| if ((bool)e.RowElement.RowInfo.Cells["MarkedForDeath"].Value == true) |
| { |
| e.RowElement.ForeColor = Color.Red; |
| e.RowElement.DrawFill = true; |
| } |
| else |
| { |
| e.RowElement.ResetValue(Telerik.WinControls.VisualElement.ForeColorProperty); |
| } |
| } |
Hi,
I'm creating an WebEditor with the Ribbonbar in Vb.net.
My problem is, that always if I press Alt, the Ribbonbar
gots the focus. That's a big problem, because
the user can't write chars like "{" or "}", wich are
very important for writing Website ( for Example in PHP ).
Can I deactivate it, or is there any workaround?