Hi tganz,
We don’t have a CellPutN but we have cellPut and cellPuts. The first one updates a single cell and the second multiple cells. cellPutS is actually going to be renamed to cellsetPut to make its use clearer.
To use cellPut do the following:
$tm1Ui.cellPut(1200.56, "instance", "cube", "Element1", "Element2").then(function(result){
// Handle result
if(result.success){
// It worked!!
}
});
For a string value you should pass through a string to the save function
$tm1Ui.cellPut("a string", "instance", "cube", "Element1", "Element2").then(function(result){
// Handle result
if(result.success){
// It worked!!
}
});