0

I have a Reflection-created dialog that looks like below. When the date is clicked, the popover changes shape and renders the datepicker squished, see below too.

My Class is below for reference.

enter image description here

enter image description here

[Preserve(AllMembers = true)]
public class EventEntity
{


    [Section("Date of Measurement", "")]
    [Indexed]
    [Date]
    public DateTime Date ;


    [Section("Measurement Details", "")]
    [Caption("Height")]
    [Entry(Placeholder= "Centimeters",KeyboardType = UIKeyboardType.PhonePad)]
    public string HeightCM ;


    [Caption("Weight")]
    [Entry(Placeholder= "Kilograms",KeyboardType = UIKeyboardType.PhonePad)]
    public string WeightKG ;


    [Caption("Head Circumference")]
    [Entry(Placeholder = "Centimeters", KeyboardType = UIKeyboardType.PhonePad)]
    public string HeadCircumferenceCM;


    [Skip]
    public int ChildFK ;

    [Skip]
    [PrimaryKey, AutoIncrement]
    public int PK;

}
dalexsoto
  • 3,412
  • 1
  • 27
  • 43
Ian Vink
  • 66,960
  • 104
  • 341
  • 555

1 Answers1

0

If you provide me with a self-contained test case, I could look into debugging that. I never really used MonoTouch.Dialog in the iPad ;-)

miguel.de.icaza
  • 32,654
  • 6
  • 58
  • 76