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
Hello Noxe,
Thanks for the report. I can stably repro this error in my tests with MainDemo:
27.05.13 14:30:38.829 ================================================================================
The error occurred:
Type: InvalidOperationException
Message: Cannot change property 'DefaultSorting' when the XPCollection is not in design or initialization mode.
Data: 0 entries
Stack trace:
at DevExpress.Xpo.XPServerCollectionSource.set_DefaultSorting(String value)
at DevExpress.ExpressApp.CollectionSourceBase.set_Sorting(IList`1 value)
at DevExpress.ExpressApp.ListView.LoadModelCore()
at DevExpress.ExpressApp.View.LoadModel()
at MainDemo.Module.Controllers.Q497593.<.ctor>b__0(Object s, SimpleActionExecuteEventArgs e) in C:\Users\Public\Documents\DXperience 13.1 Demos\eXpressApp Framework\MainDemo\CS\MainDemo.Module\Controllers\TaskActionsController.cs:line 84
at DevExpress.ExpressApp.Actions.ActionBase.ExecuteCore(Delegate handler, ActionBaseEventArgs eventArgs)
InnerException is null
We will consider fixing it.
P.S.
Please consider not using the LoadModel method, because it is now marked for internal use only. Use the Frame.SetView(yourUpdatedView) instead.
K - thx Dennis, currently i do this:
((ModelNode)this.View.Model.Columns).Undo();
this.View.LoadModel();
so instead you mean:
((ModelNode)this.View.Model.Columns).Undo();
this.Frame.SetView(this.View);
?
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:
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); }; } }
k thx!
Welcome, Man!