Hi,
I've used RadFileExplorer and binded it with my Items table using
CREATE TABLE [dbo].[Items](
[ItemID] [int] IDENTITY(1,1) NOT NULL,
[Name] [varchar](50) NULL,
[ParentID] [int] NULL,
[MimeType] [varchar](50) NULL,
[IsDirectory] [bit] NULL,
[Size] [bigint] NULL,
[Content] [varbinary](max) NULL)
I've added data to it and it is shown on fileExplorer now can I get the itemid from this table of selected node??
I've tried RadFileExplorer1.TreeView.SelectedValue inside a button click event, but no use it gives me node text like 'Root/NewFolder/Nature' but I want Nature ItemID which binded with Items table is there anyway I get this ID??