Click here to Skip to main content
15,885,546 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#



I have an mvc razor application, I want to display a treeview on demand. I used jquery-treeview-async-0.1.0.js and it work very well. But Now I want select some folder from this treeview.
this is index.cshtml:

<ul id="fileSystemInfos" class="filetree">
</ul>

<script src="@Url.Content("~/Scripts/jquery-1.4.4.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery-treeview-1.4.0.min.js")" type="text/javascript"></script>

<script src="@Url.Content("~/Scripts/jquery-treeview-async-0.1.0.js")" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#fileSystemInfos').treeview({
url: '@Url.Action("GetCollectionWS")',
ajax: {
type: 'post',

},
control: '#fileSystemInfosControl'
})
});
</script>

Please can someone help me?
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900