Sha256: 6f5c740ff8590814f9f1103049e1fc1b1b195ee2aa1617b75afcd1cc7ea2254b
Contents?: true
Size: 1.06 KB
Versions: 4
Compression:
Stored size: 1.06 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', './DatePickerRenderer'], function(Renderer, DatePickerRenderer) { "use strict"; /** * DateRangeSelection renderer. * @namespace */ var DateRangeSelectionRenderer = Renderer.extend(DatePickerRenderer); /** * Write the value of the input. * * @public * @param {sap.ui.core.RenderManager} oRm The RenderManager that can be used for writing to the render output buffer. * @param {sap.ui.core.Control} oControl An object representation of the control that should be rendered. */ DateRangeSelectionRenderer.writeInnerValue = function(oRm, oControl) { if (oControl._bValid) { oRm.writeAttributeEscaped("value", oControl._formatValue(oControl.getDateValue(), oControl.getSecondDateValue())); } else { oRm.writeAttributeEscaped("value", oControl.getValue()); } }; return DateRangeSelectionRenderer; }, /* bExport= */ true);
Version data entries
4 entries across 4 versions & 2 rubygems