C2020-003 Added logic to sort the checkoff list using both the Index and (if available) the OrderBy elements.

C2020-003 – Added the OderBy element to the Checkoff item
This commit is contained in:
2020-03-05 15:05:36 +00:00
parent 83ec578e88
commit b9352fc0f5
3 changed files with 103 additions and 7 deletions

View File

@@ -1940,6 +1940,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _Index, "@Index");
}
}
private LazyLoad<float?> _OrderBy; // C2020-003 used to sort list of checkoffs in the combo box
public float? OrderBy
{
get
{
return LazyLoad(ref _OrderBy, "@OrderBy");
}
}
private LazyLoad<int?> _UIMark;
public int? UIMark
{