Ticket Q497593
Visible to All Users
Duplicate

We have closed this ticket because another page addresses its subject:

Provide the capability to reset View controls' settings defined at runtime

Core - The "Cannot change property 'DefaultSorting' when the XPCollection is not in design or initialization mode" error occurs in server mode

created 12 years ago

Hi Guys,

i have an action on listview to reset the model. in 13.1, when the listview is in servermode - i get this exception:

Type: InvalidOperationException
Message: Kann die Eigenschaft 'DefaultSorting " nicht ändern, wenn die XPCollection nicht im Design oder Initialisierung Modus ist.
Data: 0 entries
Stack trace:
bei DevExpress.Xpo.XPServerCollectionSource.set_DefaultSorting(String value)
bei DevExpress.ExpressApp.Xpo.XPObjectSpace.SetCollectionSorting(Object collection, IList`1 sorting)
bei DevExpress.ExpressApp.CollectionSourceBase.ApplySorting(IList`1 sorting)
bei DevExpress.ExpressApp.CollectionSourceBase.ApplySorting()
bei DevExpress.ExpressApp.CollectionSourceBase.set_Sorting(IList`1 value)
bei DevExpress.ExpressApp.ListView.LoadModelCore()
bei DevExpress.ExpressApp.View.LoadModel()
bei VenDoc.Module.Win.Controller.GridViewController.GridView_ResetLayout_Click

Show previous comments (2)
Dennis Garavsky (DevExpress) 12 years ago

    No, my idea is to recreate the whole View via the XafApplication.CreateXXXView methods. See some example code at Change Editor Of View At Runtime.
    Here is also my test code that worked fine:

    C#
    public class Q497593 : ViewController<ListView> { public Q497593() { SimpleAction action = new SimpleAction(this, "Q497593", DevExpress.Persistent.Base.PredefinedCategory.RecordEdit); action.Execute += (s, e) => { //View.LoadModel(); Frame.SetView(Application.CreateListView(Application.CreateObjectSpace(), View.ObjectTypeInfo.Type, View.IsRoot), true, Frame); }; } }
    M M
    Martin Praxmarer - DevExpress MVP 12 years ago

      k thx!

      Dennis Garavsky (DevExpress) 12 years ago

        Welcome, Man!

        Answers approved by DevExpress Support

        created 12 years ago (modified 8 years ago)

        Hello Noxe,

        UPDATED:
        Starting with v16.2.4, you can implement an Action that would customize required options in the Application Model and recreate the View controls accordingly, as described in the How to refresh View appearance after making changes to the Application Model in code ticket.
        ===============
        We researched this behavior and found out that using the LoadModel method is not correct here, because it leads to changing sorting options of the server collection when it is already bound to the grid, which is an exception situation in XPO.
        So, I suggest you recreate the whole View via the XafApplication.CreateXXXView methods. See some example code at Change Editor Of View At Runtime.
        Here is also my test code that worked fine:

        C#
        public class Q497593 : ViewController<ListView> { public Q497593() { SimpleAction action = new SimpleAction(this, "Q497593", DevExpress.Persistent.Base.PredefinedCategory.RecordEdit); action.Execute += (s, e) => { //View.LoadModel(); Frame.SetView(Application.CreateListView(Application.CreateObjectSpace(), View.ObjectTypeInfo.Type, View.IsRoot), true, Frame); }; } }
          Comments (2)
          Dennis Garavsky (DevExpress) 12 years ago

            Hello Noxe,
            Please check my latest update to the How to reset View customizations made by end-users example. It shows an alternative way of accomplishing this task. I hope you find this information helpful.

            M M
            Martin Praxmarer - DevExpress MVP 12 years ago

              Thanks for the Info!

              Other Answers

              created 11 years ago (modified 11 years ago)

              When using the proposed solution with a nested view then it loses its connection with master object and I get a list with all objects of the given type instead of the objects which belong to the master object only. Here is some code for this case:

              C#
              private void ResetView() { var objectSpace = Application.CreateObjectSpace(); if (!View.IsRoot) { var propertyCollectionSource = (PropertyCollectionSource)((ListView)View).CollectionSource; Frame.SetView(Application.CreateListView(View.Id, Application.CreatePropertyCollectionSource( objectSpace, propertyCollectionSource.MasterObjectType, objectSpace.GetObject(propertyCollectionSource.MasterObject), propertyCollectionSource.MemberInfo, View.Id, propertyCollectionSource.IsServerMode, propertyCollectionSource.Mode), View.IsRoot), true, Frame); } else { Frame.SetView(Application.ProcessShortcut(Frame.View.CreateShortcut()), true, Frame); } }
                Show previous comments (2)
                M M
                Martin Praxmarer - DevExpress MVP 11 years ago

                  Thx Dennis - i didnt knew the fact about the ProcessShortcut as i rarely use it :)

                  Dennis Garavsky (DevExpress) 11 years ago

                    ;-)

                    AG AG
                    Alex Gn (DevExpress) 8 years ago

                      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.