finlay, i came back to controller demo example whio feet better my need.
i just corrected the error who raise in demo.js on the fonction onMsg
 onMsg: function(raw){
  new Element('div', {
   'class': 'message',
   html: decodeURIComponent(raw.data.message)
  }).inject(this.container);
 }
 
transformed to 
onMsg: function(raw){
     $("#"+this.container.selector).append(
new Element('div', {
   'class': 'message',
   html: decodeURIComponent(raw.data.message)
  }));
   }
 
and now, it work perfectly..
 
thanks, I just need to talk ..to find the solution
 
 

Le samedi 8 septembre 2012 16:52:05 UTC+2, Pablo a écrit :

> https://github.com/APE-Project/APE_JSF
> On Sep 8, 2012 10:42 AM, "christian audebert" 
> <[email protected]<javascript:>> 
> wrote:
>
>> i found the APE and Jquery example, but it refer to jsfiddle.
>> i dont use and know jsfiddle..
>> and cant find where are javascript.js , config.js and shoutbox.js 
>> included in the html source.. can you explain where are this files.?
>>  
>>
>> -- 
>> You received this message because you are subscribed to the Google
>> Groups "APE Project" group.
>> To post to this group, send email to [email protected]<javascript:>
>> To unsubscribe from this group, send email to
>> [email protected] <javascript:>
>> For more options, visit this group at
>> http://groups.google.com/group/ape-project?hl=en
>> ---
>> APE Project (Ajax Push Engine)
>> Official website : http://www.ape-project.org/
>> Git Hub : http://github.com/APE-Project/
>>
>

-- 
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/

Reply via email to