You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example I have a cell with a blue background, when I update using decoder.updateCell('Sheet1', 0, 0, 1337); the cell data is updated but the style of the cell is eliminated (the background in white/none).
Thank you
The text was updated successfully, but these errors were encountered:
Hello here, I've updated code of library for this
in xlsx.dart updated method _replaceCell, then updated _createCell for catching this style
`
static XmlElement _replaceCell(XmlElement row, XmlElement? lastCell,
int columnIndex, int rowIndex, dynamic value) {
var index = lastCell == null ? 0 : row.children.indexOf(lastCell);
int? styleId = lastCell?.getAttribute('s') != null
? int.tryParse(lastCell!.getAttribute('s')!)
: null;
For example I have a cell with a blue background, when I update using
decoder.updateCell('Sheet1', 0, 0, 1337);
the cell data is updated but the style of the cell is eliminated (the background in white/none).Thank you
The text was updated successfully, but these errors were encountered: