Utilizing the Formatter Function in SAPUI5

To format the data that is being rendered on different UI controls on the UI screen, formatter functions are utilized. For instance, flag indicators like 0,1,2, etc. are returned by the data being received from the backend using an Odata Model. Additionally, you want to provide the user a meaningful sentence that corresponds to the flag. In this instance, the formatter function will be called, formatting the flag to appear to the user as a meaningful text.

We will go through an example of a formatter function in this tutorial. A JSON model will be created, and one of its properties—which contain codes or flag values—will be bound to a text field on the user interface. Next, a formatter function will be defined and attached to the text field on the user interface. We will implement logic to return corresponding meaningful text for a given input flag or code within the formatter function specification.

1. Create JSON Model

var oModel = new sap.ui.model.json.JSONModel();
oModel.setData({code:"1"});
sap.ui.getCore().setModel(oModel); 

2. Create Text View in the View file

var oTextView = new sap.ui.commons.TextView("textView", {
    // bind text property of textview to code property of model
    text: "{/code}",
    formatter: '.formatter.statusText' 
});

3. Create Formatter.js file

Make a file called formatter.js in the WebContent/model folder.

sap.ui.define([], function () {
 "use strict";
 return {
 statusText: function (sStatus) {
 switch (sStatus) {
 case "0":
 return 'New';
 case "1":
 return 'In Progress';
 case "2":
 return 'Completed';
 default:
 return sStatus;
 }
 }
 };
});

4. Refer formatter.js file in View’s Controller

Define
sap.ui.define([
 "sap/ui/core/mvc/Controller",
 "sap/ui/model/json/JSONModel",
 "sap/ui/demo/wt/model/formatter"
], function (Controller, JSONModel, formatter) {
 "use strict";
 return Controller.extend("org.test.controller.Sample", {
 formatter: formatter,

Output

After this coding is finished, the output below will show up on the screen.

The output will be “New” in accordance with the formatter function description in step 3 above when the “code” property value is 0.

According to the formatter function description, the output will state “In Progress” when the “code” property value is 1.

When ‘code’ property value is 2, output will be ‘Completed’ as per formatter function definition

This is an easy illustration of the formatter function in SAPUI5.Even if the formatting is quite complex, the steps remain the same.Formatters are quite helpful in many real-world project scenarios for tasks like changing the output color and an element’s visibility, among many other things.

Please use the comment section to ask any queries you may have. We respond to each and every comment.


Read Our blog here:-

Mastering Customer 360 in Salesforce

Top SAP Module is best in 2024 for Career Growth

Salesforce Developer Salary in India An In-Depth Analysis

  • Related Posts

    How Can UI5 Apps Be Deployed Without LPD_CUST?

    Applications using SAPUI5 have the option to include reusable UI blocks known as Components. These are SAPUI5 applications that are completely working. Put differently, SAPUI5 apps can leverage the notion…

    SAPUI5: Fundamental Factory Functions for Freshmen

    Do you count among those who are just now becoming aware of Factory functions? Do not experience exclusion. Few people are familiar with this word. Everyone is growing and learning…

    Leave a Reply

    Your email address will not be published. Required fields are marked *

    You Missed

    How Can UI5 Apps Be Deployed Without LPD_CUST?

    • By Varad
    • February 20, 2025
    • 28 views
    How Can UI5 Apps Be Deployed Without LPD_CUST?

    SAPUI5: Fundamental Factory Functions for Freshmen

    • By Varad
    • February 19, 2025
    • 35 views
    SAPUI5: Fundamental Factory Functions for Freshmen

    Utilizing the Formatter Function in SAPUI5

    • By Varad
    • February 18, 2025
    • 35 views
    Utilizing the Formatter Function in SAPUI5

    SAPUI5, the newly introduced Resource Model

    • By Varad
    • February 17, 2025
    • 53 views
    SAPUI5, the newly introduced Resource Model

    How can I send an email in the SAPUI5 Hybrid App? Advance SAPUI5 – 3.

    • By Varad
    • February 16, 2025
    • 50 views
    How can I send an email in the SAPUI5 Hybrid App? Advance SAPUI5 – 3.

    Advanced Speech Recognition with SAPUI5–7

    • By Varad
    • February 15, 2025
    • 43 views
    Advanced Speech Recognition with SAPUI5–7