Hello there!
I need some custom fields for each appointment. I managed to insert the respective widgets into the edit dialog, and I can make it display custom properties using fake data.
My real data however is in iCal format. Therefore, I am using the jqx dataAdapter for “ics”, which also works fine:
var source = {
dataType: ‘ics’,
localData: ical
};
var adapter = new $.jqx.dataAdapter(source);
However, this ical string contains some custom properties (prefixed with “X-” according to the iCal specification). Is there any way to access these custom properties via the “appointmentDataFields” definition? If not, is there any way how I can tell the dataAdapter to parse those or to somehow attach them manually? If not, is this a feature you would consider for the next release?
Thanks and best regards