Quantcast
Channel: Recent Threads — Xamarin Community Forums
Viewing all articles
Browse latest Browse all 204402

EntryCell Tapped Event not working

$
0
0

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?


Viewing all articles
Browse latest Browse all 204402

Trending Articles