Posts

Showing posts from 2019

Display data in hierarchal/Treeview style using jQuery

Image
In this post, I am going to explain you how easily you can display the data in hierarchal/Treeview style using HTML, ASP.NET WebApi and jQuery. This is the functionality that we commonly need in most of the application to present the data to end user. The user must have the basic knowledge of WebApi and jQuery as most of the work is done using both the technologies. In my example, I will present the SOW and SOW Fin data where SOW is parent and SOW data is child. I hope you will like the post. Leave your inputs in comment area down below. Let’s dig in. CDN for jQuery Libraries      < script   src ="https://code.jquery.com/jquery-1.10.2.js"></ script >      < script   src ="https://code.jquery.com/ui/1.10.4/jquery-ui.js"></ script > StyleSheet < style >      .thSow {          background-color :  lightSlateGrey ;   ...