SpreadJS Documentation
format Method
GC.Spread.Formatter Namespace > FormatterBase type : format Method
- The object with cell data to format.
Formats the specified object as a string with a conditional color. This function should be overwritten.
Syntax
var instance = new GC.Spread.Formatter.FormatterBase(format, cultureName);
var value; // Type: any
value = instance.format(obj);
function format( 
   obj : Object
) : any;

Parameters

obj
- The object with cell data to format.
Example
This example creates a custom formatter.
var customFormatterTest = {};
customFormatterTest.prototype = GC.Spread.Formatter.FormatterBase;
customFormatterTest.format = function (obj, conditionalForeColor) {
    conditionalForeColor.value = "blue";
    return "My format result : " + obj.toString();
};
customFormatterTest.parse = function (str) {
    if (!str) {
        return "";
    }
    return str;
}
activeSheet.getCell(1, 0).formatter(customFormatterTest);
activeSheet.getCell(1, 0).value("Test");
See Also

Reference

FormatterBase type