J
Jeronimo Bertran
Hello,
I have create a master/detail using a GridView and a FormView. My
DataSource for the detailed FormView is linked to the GridView by the
details ObjectDataSource whiche looks like the following:
<asp:ObjectDataSource ID="ObjectDataSourceEventDetails"
runat="server" SelectMethod="SelectEventDetails" TypeName="EventData"
UpdateMethod="UpdateEventDetails">
<SelectParameters>
<asp:ControlParameter ControlID="GridViewEvents" Name="eventID"
PropertyName="SelectedValue" Type="Int64" />
</SelectParameters>
</asp:ObjectDataSource>
When I update the record on the FormView by ussing the FormView.UpdateItem,
the modified item is shown on the form view but the changes are not
reflected on the master GridView. Is there some way to do this?
Thanks,
Jeronimo Bertran
I have create a master/detail using a GridView and a FormView. My
DataSource for the detailed FormView is linked to the GridView by the
details ObjectDataSource whiche looks like the following:
<asp:ObjectDataSource ID="ObjectDataSourceEventDetails"
runat="server" SelectMethod="SelectEventDetails" TypeName="EventData"
UpdateMethod="UpdateEventDetails">
<SelectParameters>
<asp:ControlParameter ControlID="GridViewEvents" Name="eventID"
PropertyName="SelectedValue" Type="Int64" />
</SelectParameters>
</asp:ObjectDataSource>
When I update the record on the FormView by ussing the FormView.UpdateItem,
the modified item is shown on the form view but the changes are not
reflected on the master GridView. Is there some way to do this?
Thanks,
Jeronimo Bertran