[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Editable Cell

  • Thread starter Thread starter Laura Stern
  • Start date Start date
Status
Not open for further replies.
L

Laura Stern

Guest
Well, to repeat myself, you need to propagate the modified value back to your data source, (e.g., the temp-table) in order for the new value to "stick". You can set the AutoUpdate property of the binding source to true and it will automatically try to do the update. This property defaults to false because most developers want more control over their updates - i.e., to control what happens if an error occurs. Or you can subscribe to an event - thank you Roger - like the BeforeRowUpdate event. Then in there you can set the TT field value from the grid's current cell value. The event handler parameter gives you access to the modified Row object and from there you can get the cell value. The TT buffer will already be populated with the record for that row. You just have to set the field.

Continue reading...
 
Status
Not open for further replies.
Back
Top