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
245
How to delete activities of webscheduleinfo in clientside...
posted

Hi,

I had tried to delete the webscheduleinof's activites in Client side...

I have used the below code...

var webinfo = ig_getWebScheduleInfoById('<%= WebScheduleInfo1.ClientID %>');var arrAct = webinfo.getActivities();

 

for(var count =0; count < arrAct.length; count++)

{

        var x = arrAct.getItem(count);

         webinfo.deleteActivity(x,"What Should I use here?");

}

what Id should I pass for the above function.... Please help urgent...

  • 245
    posted

    Hellooo,

     

    where are the peoples from Infragistics?....

  • 45
    posted

    I am having the same issue.

    My code is as follows and does not work...

    Dim oAppt As Appointment

    For Each oAppt In wSchedInfo.Appointments

                wsoDbProvider.RemoveActivity(oAppt)

    Next

     

    Can anyone help?