Skip to main content
Topic: How can I export the modified List View? (Read 830 times) previous topic - next topic

How can I export the modified List View?

Hi,
When I create a List view, the record contain number in DB, but the cell contain a string on screen (this is an Ajax page). When I create export, then exported file contain the numbers (not the strings).
There isn't optimal, that I store strings in DB (for exampe: the value is 'Enable' is form, then I store  '1' in DB. On List view I show 'Enable', but I view '1' after Export to Excel file)

How can I modify this?

Re: How can I export the modified List View?

Reply #1
@machobymb‍ export to excel uses the data directly from database, while pdf and word convert the current HTML page data to word doc or pdf. The options you have are to store the details you want to export, in the database directly (E.g instead of the id of a user, you store the name) or you create your own excel export.

 

Re: How can I export the modified List View?

Reply #2
@willvinCan you help me to create an own export function?