Use GetJustRoDb to reduce unnecessary data loading

Added flag to allow the section to have optional content.
Optional Content flag eliminates message "No Section Content"
Handle RO_Lookup Page Token
This commit is contained in:
Rich
2013-02-05 14:58:32 +00:00
parent 96b1edb78f
commit 398972fab1
4 changed files with 32 additions and 4 deletions

View File

@@ -154,6 +154,18 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region OptionalSectionContent
[Category("Miscellaneous")]
[Description("Section Optional Content")]
private LazyLoad<bool> _OptionalSectionContent;
public bool OptionalSectionContent
{
get
{
return LazyLoad(ref _OptionalSectionContent, "@OptionalSectionContent");
}
}
#endregion
#region SpecialStepsFoldout
[Category("Miscellaneous")]
[Description("Section Special Steps Foldout")]