Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
25
WebMonthView in WARP panel
posted

Hi all,

 

i am using webmonthview control inside WARP panel. Any postback events are not working properly. Refreshcomplete event of WARP panel never triggered.

What is the problem in that?.

Advance thanks for replies/solutions.

 

Thanks,

Vivek 

 

 

Parents
No Data
Reply
  • 28464
    posted

    Hello Vivek,

    I am trying to reproduce the issue, however this is working perfectly fine for me (RefreshComplete fires, and the respective events of the WebScheduleInfo control fire correctly). Here is my setup:

           <script type="text/javascript">
           
            function dayViewClicked(one, two, three, four, five)
            {           
                var warp =  ig_getWebControlById("<%= WebAsyncRefreshPanel1.ClientID %>");
                warp.refresh();
            }
           
            function refreshComplete()
            {
                alert("here");
            }
           
            </script>
       
            <igmisc:WebAsyncRefreshPanel ID="WebAsyncRefreshPanel1" runat="server" Height="20px" RefreshComplete="refreshComplete"
                Width="80px">
                <igsch:WebMonthView ID="WebMonthView1" runat="server" WebScheduleInfoID="WebScheduleInfo1">               
                    <ClientEvents Click="dayViewClicked" />
                </igsch:WebMonthView>
               
               <igsch:WebScheduleInfo ID="WebScheduleInfo1" runat="server"
                    onactivedaychanged="WebScheduleInfo1_ActiveDayChanged">
                </igsch:WebScheduleInfo>
               
              
            </igmisc:WebAsyncRefreshPanel>

    Could you please try this and see if it works? 

Children
No Data