Displaying 1 result from an estimated 1 matches for "getmeetingdetail".
2007 Aug 29
1
Re: using Ajax.PeriodicalUpdater in iPhone
...calUpdater in iPhone. This timer
> event will last only four or five times.
>
> Code:
> start :function(){
> ...
> var soptions = {}
> soptions.postBody = "RequestBody=" +
> pars.toAjaxRequest().Body;
> soptions.onSuccess = this.getMeetingDetail.bind(this);
> soptions.frequency = 10;
> this.callStatus = new Ajax.PeriodicalUpdater("",
> this.eng._uri, soptions)
> },
>
> getMeetingDetail : function(strResponse)
> {
> alert("getReturnMsg");
> }
>...