@openui5/sap.m
Version:
OpenUI5 UI Library sap.m
44 lines (38 loc) • 1.2 kB
JavaScript
/*!
* UI development toolkit for HTML5 (OpenUI5)
* (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
sap.ui.define([
'./library',
'sap/ui/core/Control'
], function(library, Control) {
"use strict";
/**
* Constructor for a new UploadCollectionToolbarPlaceholder.
*
* @param {string} [sId] ID for the new control, generated automatically if no ID is given
* @param {object} [mSettings] initial settings for the new control
*
* @class
* Used to create a customizable toolbar for the UploadCollection.
* A FileUploader instance is required in the toolbar and will be placed by the application.
* @extends sap.ui.core.Control
*
* @author SAP SE
* @version 1.60.39
*
* @constructor
* @public
* @since 1.34.0
* @alias sap.m.UploadCollectionToolbarPlaceholder
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
*/
var UploadCollectionToolbarPlaceholder = Control.extend("sap.m.UploadCollectionToolbarPlaceholder", {
metadata: {
library: "sap.m",
properties: {}
}
});
return UploadCollectionToolbarPlaceholder;
});