Skip to main content

Pentaho+ documentation has moved!

The new product documentation portal is here. Check it out now at docs.hitachivantara.com

 

Hitachi Vantara Lumada and Pentaho Documentation

Sprintf

cdf.dashboard. Sprintf

Static

Sprintf implementation for javascript. The class returns a function that can be called to format a string according to the Sprintf specs.

require(["cdf/dashboard/Sprintf"], function(Sprintf) {
  var firstName ="John";
  var info = Sprintf("%s %s is %d years old!", firstName,"Doe", 42);
  //info =="John Doe is 42 years old!"});

AMD Module

require(["cdf/dashboard/Sprintf"], function(Sprintf) { /* code goes here */ });

Source: dashboard/Sprintf.js, line 21

See also: http://www.webtoolkit.info/javascript_sprintf.html