BlazorDatasheet icon indicating copy to clipboard operation
BlazorDatasheet copied to clipboard

CSV Support

Open michalss opened this issue 2 years ago • 1 comments
trafficstars

Hi,

can i get sample how to display csv like data from string please ? Im transfering csv from api, it is a string with comma delimeter..

SAMPLE DATA (column for users is dynamic, can be more or less users..)

Group,john.doe,lubja.kkoorer,peter.junk,
dl_group1,USER,NO,YES,
dl_group2,USER,dl_controler,NO,
dl_group1_microsoft365businessbasic,USER,NO,NO,

Regards

michalss avatar Aug 17 '23 11:08 michalss

BTW it would be nice to add this to nuget :)

michalss avatar Aug 17 '23 11:08 michalss

Hi @michalss at this stage you will have to parse the CSV yourself and set the values either with

Sheet.Cells.SetValue(...)

or

Sheet.Cells.SetValues(...)

anmcgrath avatar May 14 '24 09:05 anmcgrath