Skip to main content

Posts

Showing posts from January, 2013

Hierarchical GridView in ASP.NET with AJAX, JQuery implementation - Part 2

In previous post , we had seen how to show GridView in hierarchical design such as parent and child relationship. So There will be a parent grid show on the screen when loading the page, to show the details of a particular row the user required to click an expand icon located on the corresponding row. The details of the particular row will show just below the row. The same will repeat for all the rows in the parent Grid. There are lots of ways to achieve this concept with ASP.NET. I had blogged some of the concept in previous posts. The links are follows – Hierarchical GridView in ASP.NET Hierarchical GridView in ASP.NET with AJAX, Javascript implementation Hierarchical GridView in ASP.NET with AJAX, JQuery implementation - Part 1 In previous post , I had given implementation using JQuery and AJAX concept. As the implementation is using AJAX, it will be very useful when large amount of child records required to be fetched for each row and bind to the grid. So, When