2

I am trying to get the value from an EntryElement

    var password = new EntryElement("Password","Password",null,true);

I have a StyledStringElement with a click event like

    new Section()
                    {
                        new StyledStringElement ("Login", delegate {
                        Console.Write (string.Format("Password is {0}",password.Value));
                        Console.Write (string.Format("Email is {0}",email.Value));
                    })

When I click on the element I can see the email string value however the password is always null.

What do I need to do differently to get the password value?

Diver Dan
  • 9,953
  • 22
  • 95
  • 166

1 Answers1

2

make sure you have pressed return on the iPhone keyboard, if not the value will not saved

Janub
  • 1,594
  • 14
  • 26