Search This Blog
Wednesday, July 31, 2013
The CollectionsEditMode option gets more flexible
Let me quote myself from the
Layout.Web - provide the capability to manage the display of detail collections, not on the global application level but, for each DetailView separately feature request, which we have just implemented in 13.2, while working on a bigger feature:
[XML]<Views> <DetailView Id="Contact_DetailView" CollectionsEditMode="View"></DetailView> </Views>
The above setting in the XAFML file will enable the View mode only for the Contact DetailView, while the rest application will use the default mode or the one specified in code:[C#]protected override void OnLoggedOn(LogonEventArgs args) { base.OnLoggedOn(args); ShowViewStrategy.CollectionsEditMode = ViewEditMode.Edit; }
Personally, I love when working on something big small things like this one get attention and are resolved. I hope you like this too:-)
Subscribe to:
Post Comments (Atom)
Now I am intrigued what is that big thing. )
ReplyDeleteJohn
Stay tuned;-)
ReplyDelete