Hi,
I've implemented your sample DBContentProvider so I can store the files and directories in a database. However, I am having issues displaying the directory structure from the database and adding a new directory.
The first three rows are what I've manually set the database to contain
ItemID name ParentID MimeType IsDirectory Size Content
1 ROOT NULL NULL 1 NULL NULL
2 images 1 NULL 1 NULL NULL
3 flowers 2 NULL 1 NULL NULL
6 NewFolder -1 1 0
How do I get the file explorer to display the first 3 rows of the table above? I've set the following but all it displays is "ROOT/":
Also, when I try and add a new folder, it does, but it does it as it appears on the fourth row of my sample database above. Is that connected to my first issue?
Thanks
Tim Metcalfe
I've implemented your sample DBContentProvider so I can store the files and directories in a database. However, I am having issues displaying the directory structure from the database and adding a new directory.
The first three rows are what I've manually set the database to contain
ItemID name ParentID MimeType IsDirectory Size Content
1 ROOT NULL NULL 1 NULL NULL
2 images 1 NULL 1 NULL NULL
3 flowers 2 NULL 1 NULL NULL
6 NewFolder -1 1 0
How do I get the file explorer to display the first 3 rows of the table above? I've set the following but all it displays is "ROOT/":
RadEditor1.ImageManager.ViewPaths = New String() {"ROOT/"}
Also, when I try and add a new folder, it does, but it does it as it appears on the fourth row of my sample database above. Is that connected to my first issue?
Thanks
Tim Metcalfe