BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
//Add the UnboundFields in GridGroupingControl this.gridGroupingControl1.TableDescriptor.UnboundFields.Add("UnboundField"); void TableDescriptor_SaveValue(object sender, FieldValueEventArgs e) { if (e.Field.Name == "UnboundField") //&& RecordIndex >= 0) { UnboundValues[e.Record.Id] = e.Value; } }
void TableDescriptor_QueryValue(object sender, FieldValueEventArgs e) { if (e.Field.Name == "UnboundField") { e.Value = UnboundValues[e.Record.Id]; } } |