shea
10/02/2018, 7:31 PMfunction getValue(options)
{
var name, join, summary, func;
if(!!options && !util.isString(options))
{
name = options.name;
join = options.join;
summary = options.summary;
func = options.func || options['function'];
}
else
{
name = options;
}
if(options instanceof Column)
{
name = options;
join = undefined;
summary = undefined;
func = undefined;
}
utilityFunctions.checkArgs([name], ['name'], 'Result.getValue');
return getCellAttribute(name, join != null ? join : null, summary != null ? summary : null, func != null ? func : null, 'value');
}