cancel
Showing results for 
Search instead for 
Did you mean: 

Formatter Not Found - SAP UI5

former_member190063
Participant
0 Kudos

Hi,

I am facing an issue in formatter. I have a fucntion inside a formatter. When I call the function, it says " .formatter.checkFunc() not found.!. I have included all necessary files in teh controller. But not able to find the cause of the issue.

View : <Text text="{parts: ['value'], formatter: '.formatter.checkFunc'}"/>

Controller :

sap.ui.define([

"XX/controller/BaseController",

"sap/ui/core/mvc/Controller",

"sap/ui/model/Filter",

"sap/ui/model/FilterOperator",

"XX/model/formatter" ],

function(BaseController, Controller, Filter, FilterOperator,formatter)

{ "use strict"; return BaseController.extend("XXXX.controller.Sourcing",

{

formatter: formatter,

Regards

Karthik S

Accepted Solutions (0)

Answers (1)

Answers (1)

iftah_peretz
Active Contributor

Hi,

Do you have in your "formatter.js" file a function that you return with the name "checkFunc"?

Is that file located in "XX/model/" as you indicated?

In addition, take a look here.