When I am creating a new column for my SPreadJs grid, I don't see any property to align my columns. For example:
var nameColInfo = { name: "Name", displayName: "Name", size: "150", resizable: true };
I would like to add a new custom binding to my grid called align. Something like this
var nameColInfo = { name: "Name", displayName: "Name", size: "150", resizable: true, **align: right** };
I don't know if this is already done by someone else. If not I will appreciate your help. I don't want to loop over my datagrid, row by row to align every cell that I need.