Cloud
Cloud-Dienstleistung für schnelle und effektive Analyse und Visualisierung von Daten für Ihr Business ohne eigene Applikationen zu erstellen oder zu programmieren.
var myFunc = function (value) {
return value.toUpperCase();
};
Stimulsoft.Report.Dictionary.StiFunctions.addFunction(
'MyCategory', 'MyFunction', 'MyFunction',
'Returns a string converted to uppercase', '', String,
'String in the uppercase', [String], ['value'], ['The text string'], myFunc);StiFunctions.addFunction registers the function with its category, name, description, return type and parameter metadata, plus the JavaScript implementation. It then appears in the designer's function list and can be used in any expression, e.g. {MyFunction("hello")}.