Sha256: 6e1ee39f110a4cdb7be3542bb9ffb4fec13adfc677e38858bb1e3f07dcfd9941
Contents?: true
Size: 1.05 KB
Versions: 4
Compression:
Stored size: 1.05 KB
Contents
/*! * UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2018 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define(['sap/ui/core/Renderer', './SelectRenderer'], function(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.ACTION_SELECT_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. */ ActionSelectRenderer.addClass = function(oRm, oActionSelect) { oRm.addClass(ActionSelectRenderer.ACTION_SELECT_CSS_CLASS); }; return ActionSelectRenderer; }, /* bExport= */ true);
Version data entries
4 entries across 4 versions & 2 rubygems