Dear Syncfusion,
I have a grid with a GridPickerColumn. This column can be nullable.
When I double Tap the column the Picker does not appear, instead the programm crashes.
When I remove the null-entry, the programm works correctly
public class PickerItems
{
public int? Id {get; set;} //when one entry has NULL as value, the programm crashes !
public String Name {get; set;}
public override ToString()
{return Name;}
}
Can you please help me out.
Regards,
Gert