We're trying to add some fields to the Events_Attendee table to customise the registration form for the Events Booking facility. We cloned the web part OK and added new fields onto the web form, but we are now struggling to get the form input to update the new field in the SQL table we added.
We are assuming we need to update the XML schema for the Events_Attendee table in order for the new field to be recognised, but we're unsure how this is done, so I suppose the question is both how can we accomplish this and are there any issues that we should be considering in terms of ongoing support for the customisation etc before we proceed.
Here is the code we've tried, where AttendeeOrganisation is the new field:
// Add new attendant to the event
EventAttendeeInfoProvider.SetEventAttendeeInfo(attendeeInfo);
attendeeInfo.SetValue("AttendeeOrganisation", txtOrganisation.Text);
attendeeInfo.Update();
Cheers
Andy