I am using Klaus' jQuery tabs with four tabs. Each tab loads a gridview based on a column value in a SQL Server 2005 database. I want to be able to select a row and have a FormView or DetailsView appear under the grid in the same tab in order to update additional columns in the same table that are not visible in the gridview above.
Example:
Gridview shows FirstName, LastName, Telephone from RequestorTable. Gridview also shows CompanyName, City, State from CompanyTable. Gridview shows FilesRequested, RequestID, RequestDate from RequestTable. Each Tab shows the same columns based on the value of the Approved column in the RequestTable and each row is selectable.
When a user selects a row in the Gridview, I want an editable details view to appear below the GridView in the same tab. This new details view will allow me to update several columns in the RequestTable returned by the SQL DataSource but not shown in the original GridView.
I would appreciate any help anyone can give me with this. I am new at web development (10 months experience) and a novice at Javascript, AJAX, and ASP.NET. Thanks