New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
this.Grid.CurrentCell.EndEdit();
this.Grid.Binder.EndEdit();
this.Grid.BeginUpdate();
this.Grid.Model[rowIndex, colIndex].Text = this.ddActivityForm.TotalActivityHrs;
this.Grid.EndUpdate();
this.Grid.Refresh();
to see if this will resolve this problem. When the currentcell is editing, setting a value into the style does not necessarily affect the actively editing value. The idea is to make sure teh currentcell is not actively editing when you try to set its value.
>this.Grid.CurrentCell.EndEdit();
>this.Grid.Binder.EndEdit();
>
>
>this.Grid.BeginUpdate();
>this.Grid.Model[rowIndex, colIndex].Text = this.ddActivityForm.TotalActivityHrs;
>this.Grid.EndUpdate();
>this.Grid.Refresh();
>
>to see if this will resolve this problem. When the currentcell is editing, setting a value into the style does not necessarily affect the actively editing value. The idea is to make sure teh currentcell is not actively editing when you try to set its value.