i have a grid that is populated by ObjectDataSource like this:
I would like to expand the grid and open the edit form with a click on the row. In this scenario, how would I go about that?
| <asp:ObjectDataSource ID="ObjectDataSource1" runat="server" |
| SelectMethod="GetOrderLinesFromDB" |
| TypeName="Haworth.Opus.Lynx.BOManager.OrderLineManager"> |
| <SelectParameters> |
| <asp:Parameter Name="lynxOrderId" Type="String" DefaultValue="1001" /> |
| </SelectParameters> |
| </asp:ObjectDataSource> |