Click or drag to resize

ControllerStandardDataItemClassIndexGetView Method (ListViewConfig, DictionaryString, String)

Gives a data list. Called method GetView from his App

Namespace:  SOWIWeb.Helper
Assembly:  SOWIWeb.Helper (in SOWIWeb.Helper.dll) Version: 19.1.23.1 (19.1.23.622)
Syntax
public virtual List<Object> IndexGetView(
	ref ListViewConfig pViewConfig,
	Dictionary<string, string> pDictionaryUI = null
)

Parameters

pViewConfig
Type: SOWIData.ManagementListViewConfig
Setting of data list (by ref)
pDictionaryUI (Optional)
Type: System.Collections.GenericDictionaryString, String
User interface dictionary

Return Value

Type: ListObject
A data list
Examples
Programming example when overriding this method
return base.IndexGetView(ref pViewConfig, pDictionaryUI);
An example to convert to type of object
var lListObject = (lList as IEnumerable<object>).Cast<object>().ToList();
See Also