Ticket Q557893
Visible to All Users

13.2 Breaking Change

created 11 years ago

I am trying to migrate from 13.1 to 13.2
I have a form inherited from TcxSchedulerCustomEventEditor
 TfrmCustomEventEditor = class(TcxSchedulerCustomEventEditor)
This does not compile anymore:

Delphi
procedure TfrmCustomEventEditor.UpdateEventValuesFromControls; begin inherited UpdateEventValuesFromControls; try FModified := True; //Undeclared identifier FModified !!! except on E: Exception do MsgBox(('Cannot post data' + #13#10 + E.Message,MB_ICONERROR); end; end;

could you please help me?
Is there a list of breaking changes? I just found the what's new page.
Thanks

Comments (1)
FF FF
Francesco Faleschini 11 years ago

    Sorry I found the reason. you added the Modified property that i can access, while FModified is now private, while before it was protected. So you can close the ticket, anwyay if you provide me a list of breaking changes it would be much appreciated.

    Answers approved by DevExpress Support

    created 11 years ago (modified 11 years ago)

    Hello,
    Thank you for informing us that the problem is now resolved. 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.
    See Also:
    [DCC Error] CustomSchedulerEditor.pas(129): E2137 Method 'ApplyChanges' not found in base class

      Show previous comments (1)

        Please, could you tell how can I set FModifed := true ?
        Any workaround ?

          You can use:
          Modified := True;

          FF FF
          Francesco Faleschini 11 years ago

            I did that, but then the problem is related to inheriting from your form, in future i will rewrite n inherited form with your assistance

            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.