UNPKG

@openui5/sap.ui.core

Version:

OpenUI5 Core Library sap.ui.core

46 lines (36 loc) 1.17 kB
/*! * OpenUI5 * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ // Provides default renderer for JSONView sap.ui.define(['./ViewRenderer'], function(ViewRenderer) { "use strict"; /** * JSONView renderer. * @namespace * @alias sap.ui.core.mvc.JSONViewRenderer */ var JSONViewRenderer = { apiVersion: 2 }; /** * Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}. * * @param {sap.ui.core.RenderManager} rm 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 */ JSONViewRenderer.render = function(rm, oControl){ rm.openStart("div", oControl); rm.class("sapUiView"); rm.class("sapUiJSONView"); ViewRenderer.addDisplayClass(rm, oControl); rm.style("width", oControl.getWidth()); rm.style("height", oControl.getHeight()); rm.openEnd(); oControl.getContent().forEach(rm.renderControl, rm); rm.close("div"); }; return JSONViewRenderer; }, /* bExport= */ true);