Click or drag to resize

PFPlugin_ViewCustomizeItemsBeforeRendering Method

Override this method to customize the items list before rendering in a gridview.

Note: it is NOT recommended to customize the list in a view with paging as it could provide the user with unexpected results. Moreover if the paging is enabled and a next page is available, the items list will contain an extra-item at the end.

Namespace:  Packflow.Plugins
Assembly:  MicaSystems.Packflow.Core (in MicaSystems.Packflow.Core.dll) Version: 1.0.0.0 (3.2.0.306)
Syntax
C#
public virtual IEnumerable<PFItem> CustomizeItemsBeforeRendering(
	PFView view,
	PFQuery query,
	List<PFItem> items
)

Parameters

view
Type: Packflow.CorePFView
query
Type: Packflow.CorePFQuery
items
Type: System.Collections.GenericListPFItem

Return Value

Type: IEnumerablePFItem
See Also