Added maxlen for the responsibility column text length

WCNTRN: Added maxlen for the responsibility column text length
This commit is contained in:
Kathy Ruffing 2015-06-05 16:06:12 +00:00
parent 577f35faa3
commit e877c61b7f
2 changed files with 13 additions and 0 deletions

Binary file not shown.

View File

@ -531,6 +531,19 @@ namespace VEPROMS.CSLA.Library
}
}
#endregion
#region MaxLen
private LazyLoad<int?> _MaxLen;
[Category("Section Continue Msg")]
[DisplayName("MaxLen for text within the column")]
[Description("MaxLen for text within the column")]
public int? MaxLen
{
get
{
return LazyLoad(ref _MaxLen, "@MaxLen");
}
}
#endregion
#region Message
private LazyLoad<string> _Message;
[Category("Continue Msg")]