All Products
Demos
Pricing
Services
Blogs
Docs & Support
Search
Shopping cart
Login
Contact Us
Get A Free Trial
close mobile menu
Telerik Forums
/
UI for ASP.NET AJAX Forum
/
FileExplorer
/
Folder browser, am I looking in the wrong place?
Cancel
Telerik UI for ASP.NET AJAX
Resources
Buy
Try
Feed for this thread
2 posts, 0 answers
Blasty
15 posts
Member since:
Feb 2009
Posted 14 Apr 2009
Link to this post
I just want a folder browser so someone can select a folder, and I'll get the path sent back to me for what folder they selected
I'm looking around and I see talks and talks about files, but i don't want a person to be required to select a file in order to choose a folder.
Fiko
Admin
1406 posts
Posted 16 Apr 2009
Link to this post
Hello Blasty,
I believe that this
Online Demo
will be of help. Also you could get the path to the selected folder by using the following code inside the OnClientFolderChange handler :
<script type=
"text/javascript"
>
function
onClientFolderChange(sender, args)
{
alert(args.get_item().get_path());
}
</script>
I hope this helps.
All the best,
Fiko
the Telerik team
Instantly find answers to your questions on the new
Telerik Support Portal
.
Check out the tips
for optimizing your support resource searches.
Back to Top
Close