Как отображать загружаемое изображение каждый раз, когда мы меняем выбор выпадающих списков в ASP .NET
In my application i have two drop downs one is year drop down and second is month drop down and below is my jquery function which i had used to display loading image on the selection change of each drop down but this javascript function is working only for first time of my drop down selection and it is working only for one drop down it is not showing for second drop down i had tried with onchange event also by calling it in my dropdownlist but its not working <pre lang="Javascript"><script type="text/javascript"> $(function year() { $(".modal1").hide(); $("#ddlYear").change(function year() { $(".modal1").show(); var top = Math.max($(window).height() / 2 - loading[0].offsetHeight / 2, 0); var left = Math.max($(window).width() / 2 - loading[0].offsetWidth / 2, 0); modal1.css({ top: top, left: left }); }); }); </script> <script type="text/javascript"> $(function month() { $(".modal1").hide(); $("#ddlMonth").change(function month() { $(".modal1").show(); var top = Math.max($(window).height() / 2 - loading[0].offsetHeight / 2, 0); var left = Math.max($(window).width() / 2 - loading[0].offsetWidth / 2, 0); modal1.css({ top: top, left: left }); }); }); </script> <asp:DropDownList ID="ddlYear" runat="server" Height="22px" Width="121px" OnSelectedIndexChanged="ddlYear_SelectedIndexChanged" onchage="validate year();" AutoPostBack="True"> <asp:DropDownList ID="ddlMonth" runat="server" Height="22px" Width="121px" AutoPostBack="True" onchage="validate month();" OnSelectedIndexChanged="ddlMonth_SelectedIndexChanged">
Что я уже пробовал:
я попытался вызвать свою функцию в ochnage drodownlist, но она не была написана
Karthik_Mahalingam
вы используете панель обновления ?
Member 12324523
да я использую панель обновления
Member 12324523
Может ли кто - нибудь помочь мне решить эту проблему
Karthik_Mahalingam
как вы скрываете модальный после открытия ?