I have defined one ultradatasource.In that i defined varous columns with their key.I placed a wingrid in the form.I set ultradatasource as datasource of this datagrid.I defined varios columns of this grid.I set their key values similar to ultradatasource.
e.Row.Cells["iStatus"].Value = "Select"
Then it is giving error "key not found"
I cannot understand why this error is coming
Make sure tha "iStatus" column exist in your data source. Most of the time this error is being generated when there is no matching column in the data source.
Thanks,