Jump to content


MatejSi

Member Since 28 Feb 2020
Offline Last Active Feb 28 2022 07:37 PM
-----

Posts I've Made

In Topic: NextGrid Mouse Over (hover) Highlight

06 April 2021 - 08:46 AM

Hello,

I would like to refresh this post.

 

Is it possible to use onCellMouseEnter and onCellMouseLeave events to hightlight rows on mouse over?

 

Thank you


In Topic: NextGrid Mouse Over (hover) Highlight

22 March 2021 - 09:36 AM

Hello,

yes, I was reffering to those events. But is it possible to use them to highlight (change color) of cell/row? I tried simple

 

    procedure TForm1.TableCellMouseEnter(Sender: TObject; ACol,
  ARow: Integer);
begin
Table.cell[acol,arow].color:=clSilver;
end;
 
but it didn't work.
 
It's not neccessary to have properties for that if those two events can do the job.