I am looking for a way to make custom databindig for appointments.
I have used the appointments.location field to store the location for the appointment and that works fine, how ever i would love to be able to add a custom databinding for the location and other fields instead of just putting them all in the "AllProperties" field.
This would be handy so i can easily query the table in SQL
Does anyone have any examples or guidance for me
so far i have made a class that inherits Infragistics.Win.UltraWinSchedule.UltraCalendarInfo
but i am a little lost as you can not add to DataBindingsForAppointments.......
anyway, like i said any guidance would be great
Cheers
there is PLENTY of "guidence" on how to store extra data fields and also to extract that data to seperate data columns.
There is no way to override the data binding layer. If you like you can visit http://devcenter.infragistics.com/Protected/RequestFeature.aspx and submit a request for the feature. Note that UltraCalendarInfo exposes an 'AppointmentDataInitialized' event which fires when the appointment is created from the data source; you could theoretically populate the Location property from some arbitrary database field in response to that event.