Class ListDisplayParameters
Represents the actual parameters being used to render the list. An instance of this class will be stored in the ViewData object of your view under the key ListDisplayParameters. You should never need to instantiate this class directly as it is part of the inner workings of the library.
Inherited Members
Namespace: DynamicVML.Internals
Assembly: DynamicVML.dll
Syntax
public class ListDisplayParameters
Constructors
| Improve this Doc View SourceListDisplayParameters(ListParameters, Object)
Creates a new instance of ListEditorParameters.
Declaration
public ListDisplayParameters(ListParameters parameters, object additionalViewData)
Parameters
Type | Name | Description |
---|---|---|
ListParameters | parameters | |
Object | additionalViewData |
Properties
| Improve this Doc View SourceAdditionalViewData
Gets any additional view data which may have been passed by the user when calling the DisplayListFor<TModel, TValue>(IHtmlHelper<TModel>, Expression<Func<TModel, TValue>>, String, String, String, String, Object, ListRenderMode) or ListEditorFor<TModel, TValue>(IHtmlHelper<TModel>, Expression<Func<TModel, TValue>>, String, String, String, String, String, String, Object, ListRenderMode, NewItemMethod) extension methods.
Declaration
public object AdditionalViewData { get; }
Property Value
Type | Description |
---|---|
Object |
List
Gets the parameters used to create this list.
Declaration
public ListParameters List { get; }
Property Value
Type | Description |
---|---|
ListParameters |