Retrieve Value of Recordset Field
Per Yes Software support… To retrieve the value of a recordset field, or a field that is part of the datasource query but not assigned to a control in your grid or record. Grid BeforeShowRow:DirectCast(sender, InMotion.Web.Controls.Grid).DataItem("event_id").ToString() Record BeforeShow:DirectCast(sender,InMotion.Web.Controls.Record).DataItem("event_id").ToString() Grid, Record AfterExecuteSelect:DirectCast(e.OperationResult,System.Data.DataView).Table.Rows(0)("event_id").ToString()