Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

loading xml data into Ultragrid

I am trying to show xml data in an Ultragrid. I have tried using Ultragrid.loadfromxml and using the location of the file and i have also used a file input stream and throw that into the load xml method. any help?

like image 737
Talon Avatar asked May 29 '26 23:05

Talon


1 Answers

For this purpose you can load an XML file with something like this

Dim dt as DataTable = new DataTable("myData")
dt.ReadXml("path_to_your_file")
ultraGrid1.DataSource = dt
like image 187
Steve Avatar answered Jun 01 '26 08:06

Steve



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!