TTMSFMXNativeUICollectionView Button/Image

Hi,

A bit of advice please.

I want to have a button with an image on it but if I put an image on top of the button then the OnItemButtonClick event doesn't fire. I would happy to use just an image but there is no onclick event for this so how should I proceed?

Thanks.

Ken

You can disable the user interaction on the image with the following code in the OnApplyItemValue

AsImageView(AControl).ImageView.setUserInteractionEnabled(False);

Kind Regards, 
Pieter

Perfect, thanks.