Thanks for the pointer. Its working now

.
~Vijai
"Travis Merkel" <v-(E-Mail Removed)> wrote in message
news:32602D52-607F-43ED-AEF9-(E-Mail Removed)...
> Check out the CurrencyManager class:
http://msdn.microsoft.com/library/de...classtopic.asp
>
> Bind like this:
>
> CurrencyManager myCurrencyManager =
(CurrencyManager)this.myGrid.BindingContext[myGrid.DataSource];
>
> DataRowView drv = myCurrencyManager.Current as DataRowView;
>
> if (drv.Row == null) return;
>
> drv.Row["BooleanColumn"] = true;
>
> Hope it helps.