@syncfusion/ej2-lists
Version:
The listview control allows you to select an item or multiple items from a list-like interface and represents the data in interactive hierarchical structure across different layouts or views.
40 lines (39 loc) • 1.67 kB
JavaScript
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
define(["require", "exports", "@syncfusion/ej2-base/helpers/e2e"], function (require, exports, e2e_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ListViewHelper = (function (_super) {
__extends(ListViewHelper, _super);
function ListViewHelper(id, wrapperFn) {
var _this = _super.call(this) || this;
_this.id = id;
if (wrapperFn !== undefined) {
_this.wrapperFn = wrapperFn;
}
return _this;
}
ListViewHelper.prototype.getElement = function () {
return this.selector('#' + this.id);
};
ListViewHelper.prototype.getNestedULElement = function (parentId) {
return this.selector("[pid=\"" + parentId + "\"]");
};
ListViewHelper.prototype.getULElement = function () {
return this.selector("#" + this.id + " > div.e-content > ul:nth-child(1)");
};
return ListViewHelper;
}(e2e_1.TestHelper));
exports.ListViewHelper = ListViewHelper;
});