or
public
partial
class
SFRadTextBox : RadTextBox, IBusinessBindable
NotSupportedException
No spell check for GKGInc.i2Catalog.Controls.SFRadTextBox is not supported.
You should implement IControlSpellChecker interface.
Source : MicroFour StrataFrame Business
Stack Trace:
at Telerik.WinControls.UI.RadSpellChecker.Check(Control editControl)
private
void
radGridUsagers_CellFormatting(
object
sender, Telerik.WinControls.UI.CellFormattingEventArgs e)
{
e.CellElement.DrawFill =
true
;
e.CellElement.GradientStyle = GradientStyles.Solid;
if
(e.CellElement.ColumnInfo.ReadOnly)
{
if
(e.CellElement.RowElement.IsOdd)
e.CellElement.BackColor = clsColor.ReadOnlyOdd();
else
e.CellElement.BackColor = clsColor.ReadOnlyEven();
}
else
{
if
(e.CellElement.RowElement.IsOdd)
e.CellElement.BackColor = clsColor.WritableOdd();
else
e.CellElement.BackColor = clsColor.WritableEven();
}
}