Javier Baccarelli

Results 13 comments of Javier Baccarelli

OMG how is this still open?

> > OMG how is this still open? > > Sadly the repo has been dead since late 2021, however there’s I’ve [forked the repo](https://github.com/Mycornia/sheetjs-style) so you can use that...

> Hello @jbaccarelli-equinix! 👋 I'm here to assist you with any bugs, questions, or contributions you have in mind. Let's tackle this together! > > To apply timezone formatting to...

@dosu im getting a TS error: "Type '({ worksheet }: GridExceljsProcessInput) => void' is not assignable to type '(processInput: GridExceljsProcessInput) => Promise\'. Type 'void' is not assignable to type 'Promise\'"

@dosu This works for formatting the value but for some reason the `cell.value` is different from what i see. When i see "Today at 10:00 AM" in the cell, then...

> The `cell.value` is two hours ahead of the displayed value "Today at 10:00 AM" when exporting to Excel because the code creates a date using UTC instead of the...

> To bypass the UTC conversion and keep the local timezone for Excel exports, you can modify the `exceljsPreProcess` function to format the date values directly without converting them to...

> Could you provide the code for your custom export button and how you are integrating the `exceljsPreProcess` function? This will help in understanding how the worksheet is being populated...

> It looks like the `exceljsPreProcess` function is correctly defined and integrated into your custom export button. However, the worksheet might be empty during the pre-processing step because the data...

@dosu im trying to apply the same logic to a place where im programatically calling `exportDataAsExcel` but both the pre processing and post processing are not being triggered ``` await...