![]() | ![]() Products ![]() ![]() ![]() ![]() |
Home » Technical Support » Elevate Web Builder Technical Support » Support Forums » Elevate Web Builder General » View Thread |
Messages 1 to 2 of 2 total |
![]() |
Wed, Nov 30 2016 11:14 PM | Permanent Link |
kentersoft | In GridColumn's DoHeaderClick event,
function TGridColumn.DoHeaderClick: Boolean; begin {$IFNDEF DESIGN} if Assigned(FOnHeaderClick) then FOnHeaderClick(Self); {$ENDIF} Result:=True; end; But TGridColumn's property OnHeaderClick is TNotifyEvent, the TNotifyEvent can't have return value, can change this to a function, then in DoHeaderClick, function TGridColumn.DoHeaderClick: Boolean; begin {$IFNDEF DESIGN} if Assigned(FOnHeaderClick) then Result := FOnHeaderClick(Self); {$ENDIF} end; thanks! |
Thu, Dec 1 2016 4:07 PM | Permanent Link |
Tim Young [Elevate Software] Elevate Software, Inc. ![]() | kentersoft,
Thanks. I think this is already fixed, but if not, I will make sure that it is. Tim Young Elevate Software www.elevatesoft.com |
This web page was last updated on Saturday, June 3, 2023 at 10:17 AM | Privacy Policy![]() © 2023 Elevate Software, Inc. All Rights Reserved Questions or comments ? ![]() |