View Issue Details

IDProjectCategoryView StatusLast Update
0002561JEDI VCL00 JVCL Componentspublic2005-02-03 02:09
Reporterralf.kaiserAssigned Toobones 
PrioritynormalSeverityfeatureReproducibilityalways
Status resolvedResolutionfixed 
Product Version 
Target VersionFixed in Version3.00 
Summary0002561: Add Event OnAfterButtonClick to TJvCustomComboEdit
DescriptionAn event that is fired after the button on a TJvCustomComboEdit (and descendants like TjvClacEdit) would be quite usefull. OnButtonClick is fired before (e.g.) a TJvCalcEdit shows the calculator
Additional InformationThis could be the implementation (after defining the event in the class):

procedure TJvCustomComboEdit.ButtonClick;
begin
  if Assigned(FOnButtonClick) then
    FOnButtonClick(Self);

  if (FPopup <> nil) and FPopupVisible then
    PopupCloseUp(FPopup, True)
  else
    PopupDropDown(True);

  if Assigned(FOnAfterButtonClick) then // NEW
    FOnAfterButtonClick(Self); // NEW

end;
TagsNo tags attached.

Activities

obones

2005-02-03 02:09

administrator   ~0006356

Use version 1.165 from CVS.
It introduces two events: OnPopupShown and OnPopupHidden

Issue History

Date Modified Username Field Change
2005-01-27 07:22 ralf.kaiser New Issue
2005-02-03 00:32 obones Status new => assigned
2005-02-03 00:32 obones Assigned To => obones
2005-02-03 02:09 obones Status assigned => resolved
2005-02-03 02:09 obones Resolution open => fixed
2005-02-03 02:09 obones Note Added: 0006356