C
cverbiest
Guest
Got following answer from Progress tech support, case 00400024 (Telerik side of the desk) When RadScheduler is in bound mode (its DataSource property is set to a collection of records), you can extract the data item associated with each Appointment in the AppointmentFormatting event by the SchedulerAppointmentEventArgs.Appointment.DataItem property. This property will return your data record, e.g. a list record, a data row etc. After some research, I have found out that Progress.Data.DummyRow is a .NET object which is a proxy for the ABL temp-table record that holds application data. A .NET control gets a Progress.Data.DummyRow when it requests a row of data because it can only work with.NET objects. The control then asks each column descriptor of the BindingSource for the value of the corresponding field in the data row. The BindingSource passes the values for each field to the DummyRow for that record. Since, it is more related to OpenEdge than to RadScheduler, I am looping in the Progress Support who can give you further information about the Progress.Data.DummyRow and how to extract the necessary information
Continue reading...
Continue reading...