Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
Since the control is bound to the field on the business object, it is going to pull its value from the business object, so the best way to default it to the current date will be to set the field on the business object in the SetDefaultValues method to todays date. DateTime.Now will work, or if you don't want the time, then DateTime.Now.Date.
|