DVHMA/DVHMA-OpenUI5/www/resources/sap/m/ActionSelectRenderer-dbg.js

34 lines
1.1 KiB
JavaScript

/*!
* SAP UI development toolkit for HTML5 (SAPUI5/OpenUI5)
* (c) Copyright 2009-2015 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
sap.ui.define(['jquery.sap.global', 'sap/ui/core/Renderer', './SelectRenderer'],
function(jQuery, Renderer, SelectRenderer) {
"use strict";
var ActionSelectRenderer = Renderer.extend(SelectRenderer);
/**
* CSS class to be applied to the HTML root element of the ActionSelect control.
*
* @type {string}
*/
ActionSelectRenderer.CSS_CLASS = "sapMActionSelect";
/**
* Apply a CSS class to the HTML root element of the ActionSelect control.
*
* @param {sap.ui.core.RenderManager} oRm The RenderManager that can be used for writing to the render output buffer.
* @param {sap.ui.core.Control} oActionSelect An object representation of the control that should be rendered.
* @override
* @protected
*/
ActionSelectRenderer.addStyleClass = function(oRm, oActionSelect) {
oRm.addClass(ActionSelectRenderer.CSS_CLASS);
};
return ActionSelectRenderer;
}, /* bExport= */ true);