How can I export the modified List View? August 12, 2020, 10:38:45 AM 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? Quote Selected Last Edit: August 12, 2020, 10:52:25 AM by machobymb
Re: How can I export the modified List View? Reply #1 – August 12, 2020, 11:50:22 AM @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. Quote Selected
Re: How can I export the modified List View? Reply #2 – August 12, 2020, 11:56:08 AM @willvinCan you help me to create an own export function? Quote Selected Last Edit: August 12, 2020, 01:34:08 PM by machobymb