Hi,
I have converted an web project (c#) from 8.2.6 to 8.3 beta and recompiled I have an error.
the file is generated when I created an sheduler and in the form is comment:
It will be overwritten without prompting when a new version becomes available. All your changes will be lost.
DevExpress.Web.ASPxScheduler.Internal.EditorsInfo does not contain a constructor that accepts arguments 3.
my code:
protected override void PrepareChildControls() {
AppointmentFormTemplateContainer container = (AppointmentFormTemplateContainer)Parent;
ASPxScheduler control = container.Control;
AppointmentRecurrenceForm1.EditorsInfo = new EditorsInfo(control, control.Styles.FormEditors, control.Images.FormEditors);
base.PrepareChildControls();
}
the new EditorsInfo accept
EditorsInfo(
ISkinOwner skinOwner, EditorStyles editorStyles, EditorImages images, ButtonStyles buttonStyles);
How can I do?
Thanks,
Laura