This question is locked. New answers and comments are not allowed.
If I try to set the DatePicker and TimePicker editors from metadata using Angular on iOS it crashes.
html:
<RadDataForm [source]="form" [metadata]="metadata"><!-- some other groups and properties --> <TKPropertyGroup tkDataFormGroups collapsible="true" name="Main Info" hidden="false"> <TKEntityProperty tkPropertyGroupProperties name="birth"></TKEntityProperty> </TKPropertyGroup></RadDataForm>metadata:
// Some other properties in the propertyAnnotations array...{ name: "birth", displayName: "Birthday", groupName: "Main Info", index: 3, editor: "DatePicker"},The crash I get is:
-[__NSCFString isEqualToDate:]: unrecognized selector sent to instance 0x600000a46240
Note that all the other editors seem to be working.
(Honestly, I'm surprised at how many bugs I'm finding in DataForm. Quality control seems to be lacking. This doesn't inspire confidence in Telerik.)