Hey,
So I have a few pages that look a bit like this:
Code: HTML/ASPX
<eo:TabStrip runat="server" ID="TabStrip1" ControlSkinID="None" Width="400px" MultiPageID="MultiPage1" ClientSideOnItemClick="OnTabStripClick">
[...]
</eo:TabStrip>
<eo:MultiPage runat="server" ID="MultiPage1">
<eo:PageView ID="PageView1" runat="server">
<eo:Grid ID="GridFirstTab" runat="server" [...]>
[...]
</eo:Grid>
<asp:Button ID="btnUpdate" runat="server" Text="Update" OnClick="btnUpdate_Click" />
</eo:PageView>
<eo:PageView ID="Pageview2" runat="server">
<eo:Grid ID="GridSecondTab" runat="server" [...]>
[...]
</eo:Grid>
<asp:Button ID="btnUpdate" runat="server" Text="Update" OnClick="btnUpdate_Click" />
</eo:PageView>
</eo:MultiPage>
At the moment, the TabStrip triggers a postback, which causes the Grid in selected tab to be loaded. What I want, however, is to load the next tab and the contained Grid dynamically, instead of having to reload the entire page due to the postback. Is there a way to do this?
I've tried using a CallbackPanel and custom WebuserControls (very similar to the TabStrip and Multipage > Load On Demand demo), but this didn't work out, because I couldn't get the button's OnClick method to work.