@openui5/sap.ui.core
Version:
OpenUI5 Core Library sap.ui.core
38 lines (32 loc) • 874 B
JavaScript
/*!
* OpenUI5
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
// Provides enumeration sap.ui.model.TreeAutoExpandMode
sap.ui.define([],
function() {
"use strict";
/**
* Different modes for setting the auto expand mode on tree or analytical bindings.
*
* @version 1.87.1
* @enum {string}
* @alias sap.ui.model.TreeAutoExpandMode
* @protected
*/
var TreeAutoExpandMode = {
/**
* Tree nodes will be expanded in sequence, level by level (Single requests are sent).
* @protected
*/
Sequential: "Sequential",
/**
* If supported by a backend provider with analytical capabilities, the requests needed for an automatic
* node expansion are bundled.
* @protected
*/
Bundled: "Bundled"
};
return TreeAutoExpandMode;
}, /* bExport= */ true);