BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.gridDataBoundGrid1.RefreshRange(GridRangeInfo.Cell(rowIndex, colIndex), true);
If you are adding/removing an item in your collection, then you would have to call grid.Refresh() to get things synced up.
this.gridDataBoundGrid1.Refresh();
public class USArrayList : ArrayList, ITypedList { public PropertyDescriptorCollection GetItemProperties(PropertyDescriptor[] listAccessors) { return TypeDescriptor.GetProperties(typeof(USState)); } public string GetListName(PropertyDescriptor[] listAccessors) { return "USStatesList"; } } public class USState { private string myShortName ; private string myLongName ; private int _imageIndex; public USState() //default constructor { this.myShortName = "";//"defaultShortName"; this.myLongName = "";//"defaultLongName"; this._imageIndex = -1; } // other code..... }