Re: Improving AJAX support in MyFaces

2006-04-12 Thread Lisaa
play during this weekend. If anyone already knew about this and successfully using with JSF..please post your comments. Thanks. -- View this message in context: http://www.nabble.com/Improving-AJAX-support-in-MyFaces-t1412639.html#a3877488 Sent from the MyFaces - Users forum at Nabble.com.

Re: Improving AJAX support in MyFaces

2006-04-10 Thread Andrew Robinson
I made 2 patches, one for 1.1.1 and one for current SVN: http://issues.apache.org/jira/browse/MYFACES-1276 On 4/8/06, Mike Kienenberger <[EMAIL PROTECTED]> wrote: > On 4/7/06, Andrew Robinson <[EMAIL PROTECTED]> wrote: > > Would it be possible to have those extra methods in the > > HtmlFormRender

Re: Improving AJAX support in MyFaces

2006-04-08 Thread Mike Kienenberger
On 4/7/06, Andrew Robinson <[EMAIL PROTECTED]> wrote: > Would it be possible to have those extra methods in the > HtmlFormRenderer? Or at least an equivalent to allow me to add HTML > code before and after the "special" form elements? Andrew, there's no reason why we can't add this functionality t

Re: Improving AJAX support in MyFaces

2006-04-07 Thread Andrew Robinson
This is all great and well and good (honestly), except for the fact that I am developing production code to do this right now. AjaxAnywhere, although with it's limitations, is enabling me to quickly get the AJAX support I need. Although not as nice as the Avatar idea, it functions. With just a litt

Re: Improving AJAX support in MyFaces

2006-04-07 Thread Alexandre Poitras
Also, here's some useful links on incoming extensions to JSF : http://weblogs.java.net/blog/jhook/archive/2005/09/jsf_avatar_vs_m_1.html https://jsf-extensions.dev.java.net/#documentation On 4/7/06, Alexandre Poitras <[EMAIL PROTECTED]> wrote: > ADF partial page rendering should do the trick in m

Re: Improving AJAX support in MyFaces

2006-04-07 Thread Alexandre Poitras
ADF partial page rendering should do the trick in my opinion, well as soon as it is released. On 4/7/06, Andrew Robinson <[EMAIL PROTECTED]> wrote: > I am making the HTML render something like: > > > > > > > > > > function clear_myform() { > ... > } > > > > > This way AjaxAnywhere is able

Re: Improving AJAX support in MyFaces

2006-04-07 Thread Andrew Robinson
I am making the HTML render something like: function clear_myform() { ... } This way AjaxAnywhere is able to replace the inner HTML of "aazone.JsfFormState" on every AJAX reply. Right now I have to severly hack the HtmlForm to search for the input and script elements written by encode

Re: Improving AJAX support in MyFaces

2006-04-07 Thread Travis Reeder
What are you trying to accomplish exactly?  TravisOn 4/7/06, Andrew Robinson <[EMAIL PROTECTED] > wrote:One method of implementing AJAX is to re-render the page and only send pieces down to the browser. This is the way AjaxAnywhere works.However, it is not easy to get this to work in MyFaces with H

Improving AJAX support in MyFaces

2006-04-07 Thread Andrew Robinson
One method of implementing AJAX is to re-render the page and only send pieces down to the browser. This is the way AjaxAnywhere works. However, it is not easy to get this to work in MyFaces with HTML forms. The issue: AJAX needs a way to identify HTML to replace on AJAX response. This is usually d