London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
AI OnAI Off
London Dev Meetup Rescheduled! Due to unavoidable reasons, the event has been moved to 21st May. Speakers remain the same—any changes will be communicated. Seats are limited—register here to secure your spot!
Hi,
It's related to the localization labels you haven't configured for a group you are using for that student data you are entering I think.
Hard to tell without seeing the model for Student but there must be a group you're specifying on one of the properties named "Information".
How are your group definitions configured?
Thanks,
Paul
I have defined group as below.
[Display ( Name = "SomeName", GroupName = SystemTabNames.Content, Order = 5 )]
Is that group defined on a property of the Student model?
If it is I'd suggest removing it - for IList properties, the types that are added to the list are added in situ and don't require groups - maybe by specifying one it has that adverse affect you're seeing...
Let me know how it goes.
I am getting error [Missing text '/headings/heading[@name='Information']/description' for 'English'. I have code like below and when I try to enter data for Student, I get above error message, I can successfully save the data though.
[PropertyDefinitionTypePlugIn]
public class StudentProperty : PropertyListBase<TestimonialList>
{
}
public class Student
{
}
public class StudentBlock : BlockData
{
[EditorDescriptor(EditorDescriptorType = typeof(CollectionEditorDescriptor<Student>))]
public virtual IList<Student> Students{ get; set; }
}