View Issue Details

IDProjectCategoryView StatusLast Update
0003437JEDI VCL00 JVCL Componentspublic2006-01-11 13:04
ReporterfiorinoAssigned Tojfudickar 
PrioritynormalSeveritymajorReproducibilityalways
Status resolvedResolutionfixed 
Product Version3.00 
Target VersionFixed in Version3.20 
Summary0003437: TJvDropCalendar dosn't update the current day
DescriptionIf the date changes after the form is created, the current date indicator on the drop drown calendar isn't updated.
The fix is simple:

procedure TJvDropCalendar.DoShow;
begin
  {
   In the constructor the calendar will sometimes report
   the wrong size, so we do this here.
  }
  AutoSize := True;
  TJvMonthCalendar2(FCal).Today:=Date; { update the current day }
  inherited DoShow;
end;
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2006-01-11 02:15 fiorino New Issue
2006-01-11 13:04 jfudickar Status new => resolved
2006-01-11 13:04 jfudickar Resolution open => fixed
2006-01-11 13:04 jfudickar Assigned To => jfudickar