Having a problem with the arguments passed to my snippet from a Page Title component.
var model = arguments[0].model, row = arguments[0].row;
I’m getting model, but row comes back undefined, even though there is a row of data in the model (model.datat0] exists). Any idea why this might be happening?
Is model.datat0] equivalent to a row object? In that case, I could just use
var model = argumentst0].model, row = model.datat0];