TMSFMXTableView how to get the click on the left a

Hello,

how to get the itemclick from TMSFMXTableView where
itemoptions includes [ioLeftRectangle] ?

Click or tap on the area of the bitmap ( left ) does not send an onclickevent.

Thanks

The left area where the bitmap is located has hittest enabled by default. To turn it off you can use the following code:


procedure TForm1.TMSFMXTableView1ItemCustomize(Sender: TObject;
  AItem: TTMSFMXTableViewItem; AItemShape: TTMSFMXTableViewItemShape;
  AItemControlShape: TControl);
begin
  AItemShape.ShapeLeftRectangleImage.HitTest := False;
end;

Kind Regards, 
Pieter

Thats it !

Thanks a lot!
Klaus