When using OnSelectedIndexChanged in this way:
<asp:DropDownList ID="ddl1" AutoPostBack="true" OnSelectedIndexChanged="Test_SelectedIndexChanged" runat="server"></asp:DropDownList>
The UpdatePanel and UpdateProgress function correctly, displaying my gif as expected.
However, if I change it to call a javascript function, like so:
<asp:DropDownList ID="ddl1" AutoPostBack="true" onchange="selectValues()" runat="server"></asp:DropDownList>
The progress indicator no longer appears. This change is necessary because scripting needs to be incorporated into the managed code, specifically relating to Silverlight.
Is there a solution available for this issue?