Ticket Q557798
Visible to All Users

[DCC Error] CustomSchedulerEditor.pas(129): E2137 Method 'ApplyChanges' not found in base class

created 11 years ago

Hi,
After installing VCL 13.2.2 I get following error during compiling the project.
[DCC Error] CustomSchedulerEditor.pas(129): E2137 Method 'ApplyChanges' not found in base class
My application uses an custom scheduler editor.
I can't find any breaking changes for this.

Delphi
Protected procedure ApplyChanges; override;
Delphi
procedure TcxSchedulerEventEditorCustomized.ApplyChanges; begin // Deze procedure vervangt die uit unit cxSchedulerEventEditor.pas case ModalResult of mrAbort: DeleteEvent; mrOk: SaveChanges; mrCancel: begin If NieuweAfspraakRelatie then Event.Delete else Event.Cancel; FModified := False; Storage.FullRefresh; end; end; NieuweAfspraakRelatie := False; end;

Do you have a solution for this?

Answers approved by DevExpress Support

created 11 years ago (modified 11 years ago)

Hello,
We are going to review and modify our Breaking Changes page in near future. You are right, there are significant changes in Event Editors in the latest version of our Scheduler. First of all, dialogs now are not modal. The second and the most important issue is that now all "business" logic of editors should be separated from the interface logic.
There is no "ApplyChanges" method to check modal results available. In VCL 13.2.2, it is necessary to implement your own TcxSchedulerEventStandardEditorFormHelper helper class and override the following methods in it, if required:
    procedure Cancel(var AModalResult: TModalResult);
    procedure Close(var AModalResult: TModalResult);
    procedure Delete(var AModalResult: TModalResult);
    procedure Save(var AModalResult: TModalResult);
Then, just override the editor form's GetHelperClass method and provide your class there.
Attached is a small sample project that can help you rewrite the code of your custom event editor based on the VCL 13.2.2 changes.

    Show previous comments (3)

      Hi
      I am lost as to why you would want to delete an event when selecting Cancel?
      from your answer above…
      procedure TMycxSchedulerEventStandardEditorFormHelper.Cancel(
        var AModalResult: TModalResult);
      begin
        inherited;
        AModalResult := mrAbort;
        Delete(AModalResult);
      end;
      n.b. this code varies from that in the example attached to Q557798.
      If you already have an event in existence and want to view in detail, select Cancel, as you do not want to retain any changes, then the event is deleted!
      Or am I missing the point?
      Regards
      Philip L Jackson

        In my application I must make sure certain fields are correctly filled with data. When a NEW event is created in the scheduler and a user clicks on the Cancel-button, the scheduler presents the user with a confirmationmessage with three options to make sure what needs to be done "Do you want to save this event?"
        - Yes -> new event is saved but no checks on entered data is done
        - No -> new event is deleted
        - Cancel -> brings the user back to the eventeditor form
        So if the user click Yes, the NEW event is saved, but there is no guarantee that all required field are correctly filled. This behaviour I want to exclude.
        With existing events clicking the Cancel-button will do no harm, as checks were done when it was previously saved.

        DevExpress Support Team 11 years ago

          Hello,
          To Philip: You are right, my initial code was not quite correct. I have changed the sample project according to my comment.
          To Stef: By default the new event is not posted into an underlying database and storage if the end-user clicks the Cancel button. Thus, I think that it is not necessary to delete the event in this case. As for the NieuweAfspraakRelatie variable, it is also not necessary anymore because you can check whether or not the edited event is new by using the following code:

          Delphi
          if <TMycxSchedulerEventStandardEditorFormHelper>.Source <> nil then //...

          The Source property is nil for new events.
          I think that it will be more convenient to provide us with a small sample project (based on VCL 13.1.5) to demonstrate the required behavior of your custom editor. We will do our best to fine-tune it according to the new VCL 13.2.2 code.

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.