Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

350
Vistas
How to export tabulator data to csv including formatting

Is there any way to export tabulator data to CSV using formatting,

I am using Vue tabulator, Exporting is working fine but it does not include formatted data.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

Exports specifically only include unformatted table data because a lot of formatters include HTML elements that add graphical component to the cells that would not make sense in downloaded file (progress bars for example).

That being said if you would like to transform data as it is being exported, you could look at using an accessor, these are used to transform data as it is leaving the table. in this case we will need to use an accessorDownload accessor.

For the sake of example, lets assume we are doing this to the name column and want to prefix the word "mr " to the beginning of every value;

We would star by defining our accessor function:

function mrAccessor(value, data, type, component, row){
    return "mr " + value; //prepend string to value
}

Then in our column definition we would assign the accessor to the column:

{title:"Name", field:"name", accessorDownload:mrAccessor},

The data that is exported with the include the changed name values, but the values in the Tabulator table itself will remain unaffected

For full details, have a look at the Accessor Documentation

about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda