Group: Forum Members
Posts: 235,
Visits: 309
|
I've got the previously mentioned grid and bo with 24 rows of data.
How come this get sequence is called over 100 times while populating a 24 row grid?
private class Field_OccurrenceValue_Descriptor : MicroFour.StrataFrame.Business.FieldPropertyDescriptor
{
public Field_OccurrenceValue_Descriptor() : base("OccurrenceValue") { }
private System.Type _PropertyType = typeof(System.Int32);
public override object GetValue(Object component)
{
return ((ResultDefs)component).OccurrenceValue;
}
public System.Guid ResultDefId
{
get
{
return (System.Guid)this.CurrentRow["ResultDefId"];
}
Thank you,
Dan
|