I can't find anywhere in the documentation or code (first time reading coffeescript so I might have missed it) if it's possible to specify heading order. I think it comes down to these lines?
for key of row
@_addCell(key, col)
@cellMap.push(key)
col += 1
@_endRow()
Perhaps we can add a method to set cellMap manually, instead of using the first row? Since we can't rely on key ordering inside the row object, I don't see any other simple solution. What do you think?
I can't find anywhere in the documentation or code (first time reading coffeescript so I might have missed it) if it's possible to specify heading order. I think it comes down to these lines?
Perhaps we can add a method to set cellMap manually, instead of using the first row? Since we can't rely on key ordering inside the row object, I don't see any other simple solution. What do you think?