Hi there!
I'm having an issue with the tapp event on a Cell my coded is:
var EOption = new ExtendedEntryCell { Label = "EOptionLabel", LabelColor = Color.FromHex("80808E"), Placeholder = "EOptionPlaceholder", Keyboard = Keyboard.Text, }; EOption.Tapped += async (s, e) => { var action = await DisplayActionSheet("EOption", null, null, sOptions); EOption.Text = action; };
But when I tap the Entry no event is fired, If I try the same but with an Entry and instead of .Tapped .Focused it works like expected.
Any idea?
Answers
I sended to support team an example of this and they are working on it maybe it's a bug.
I'll let you know.
The problem now is a formal bug:
https://bugzilla.xamarin.com/show_bug.cgi?id=32040
The tapped event is for tapping hte cell not focusing the entry.
I tapped all over the cell and nothing fires. Originally this is happening on Android (I forgot to mention that), didn't know it happens on iOS too.
Is there a way I can focus the entry cell then fire the event?
I would double check the entry cell properly fires the tapped event. Pretty sure we have a UITest over this.
Hope you find something, Thanks a lot.