how do I export data with DropDownProvider columns. I see the number code in excel!
DataexportMode is DataInGridOnly and the grid shows me the correct description but after export excel show me the codes of these columns
why?
thanks
Pablo
Hi patitene,
This is expected behavior, simply because, the exported values are the cell values not text. You likely can override this behavior by handling cell exported event of the excelExporter. You can check the arguments passed to this event, there should be a reference to the grid cell which actually has been exported.
Hope this helps