Displaying Extended Details on a GridView
-
Good Day! I am using ASP.net 2005 (Visual Basic Code) the table I bind with the gridview has too many fields, therefore, i want to display Other details of the gridview when mouseovered or when a expand button is clicked. i have googled this for about 1 week. unfortunately, Never found a article that could solve my problem. Does anyone knows how to display extended details of a gridview? or does anyone know any working article?
-
Good Day! I am using ASP.net 2005 (Visual Basic Code) the table I bind with the gridview has too many fields, therefore, i want to display Other details of the gridview when mouseovered or when a expand button is clicked. i have googled this for about 1 week. unfortunately, Never found a article that could solve my problem. Does anyone knows how to display extended details of a gridview? or does anyone know any working article?
cometburn007 wrote:
Other details of the gridview when mouseovered or when a expand button is clicked.
This can be done using javascript and nesting grid view. You can put one more gridview for the extended details and find that on gridview on parent gridview's data binding event. By default you can set the inner gridview's display style to none. When link is clicked, call a javascript function which makes this visible. Hope this helps