Login ProductsSalesSupportDownloadsAbout |
Home » Technical Support » Elevate Web Builder Technical Support » Support Forums » Elevate Web Builder General » View Thread |
Messages 1 to 2 of 2 total |
Can change TGridColumn's OnHeaderClick to function have boolean return value |
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. timyoung@elevatesoft.com | 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 Friday, September 13, 2024 at 03:42 PM | Privacy PolicySite Map © 2024 Elevate Software, Inc. All Rights Reserved Questions or comments ? E-mail us at info@elevatesoft.com |