ClassKendoListView
KendoListView control.
Definition
Namespace:Telerik.TestingFramework.Controls.KendoUI
Assembly:Telerik.TestingFramework.Controls.KendoUI.dll
Syntax:
public class KendoListView : KendoUIContainerControlBase
Inheritance: objectControlHtmlControlHtmlContainerControlKendoUIContainerControlBaseKendoListView
Inherited Members
Constructors
KendoListView()
Initializes a new instance of the KendoListView class.
Declaration
public KendoListView()
KendoListView(Element)
Initializes a new instance of the KendoListView class.
Properties
ClientSideLocator
Gets the client-side code that defines the KendoListView.
Declaration
public override string ClientSideLocator { get; }
Property Value
Overrides
ItemsCount
count of ListViewItems on the current page
Selectable
shows whether the list is multi-select, single-select or selection is not active
SelectedItemsCount
Get the count of selected items.
SelectedItemsList
Get the list of selected items.
Declaration
public IList<KendoListViewItem> SelectedItemsList { get; }
Property Value
TotalItemCount
Count of all ListViewItems
Methods
AssignElement(Element)
Assign element and initialize this control.
Declaration
public override void AssignElement(Element e)
Parameters
e
The base element.
Overrides
FindItems(Predicate<KendoListViewItem>)
Get the list of the data items matching the given predicate.
Declaration
public IList<KendoListViewItem> FindItems(Predicate<KendoListViewItem> predicate)
Parameters
predicate
The predicate to search for.
Returns
The list of the data items matching the given predicate.
InitializeMatchExpression()
Initializes the control match expression pattern used to identify an element as a specific control.
Declaration
protected override void InitializeMatchExpression()
Overrides
SelectByIndex(int)
Select item by index. Index is zero based and is relative to current page.
Declaration
public void SelectByIndex(int index)
Parameters
index
The index value.