Click or drag to resize

ControllerStandardDataItemClassIndexGetView Method (ListViewConfig, String, 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(
	out ListViewConfig pViewConfig,
	string pViewName,
	Dictionary<string, string> pDictionaryUI = null
)

Parameters

pViewConfig
Type: SOWIData.ManagementListViewConfig
Setting of data list
pViewName
Type: SystemString
View name e.b. Index
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 this.AppTicket.GetViewSimple(out pViewConfig, pViewName, pDictionaryUI);
An example to convert to type of object
var lListObject = (lList as IEnumerable<object>).Cast<object>().ToList();
See Also