Hello,
the situation:
display a modal window with content template to show progres of an asynch page load
i.e:
the situation:
display a modal window with content template to show progres of an asynch page load
i.e:
<telerik:RadWindow VisibleTitlebar="false"
ID="AccountLoadProgressWnd" runat="server" Modal="true" ReloadOnShow="true" VisibleStatusbar="false" Behaviors="None" >
<ContentTemplate >
Loading account <span id='percentageComplete' ></span>
</ContentTemplate>
</telerik:RadWindow>
2) main page performs x number of ajax requests to load info on underlying page
Question:
i want to reference the <span id='percentageComplete' ></span>
element in the modal window.
How do i do it?