Hey,
When exporting data to Excel or PDF, if the control editor is ControlContainerEditor we see the underline data in excel and not the display text (RenderingControl).
How can we export the RenderingControl display text and not the cell value?
Thanks,
Mano
Hi,
I just wanted to know if you were able to solve your issue based on my suggestions or you still need help? Just let me know.
Thank you.
Hello,
What could you do in this case is to handle CellExported event of UltraGridExcelExporter and to change the value of the exported cell directly in the worksheet with code like:
e.CurrentWorksheet.Rows[e.CurrentRowIndex].Cells[e.CurrentColumnIndex].Value = e.GridRow.Cells[e.GridColumn.Key].Text;
please let me know if you have any further questions.