Which changes are necessary to make the jquery forms from clickclick 
jquery-examples or click-jquery examples work again?

Right now, no form on the jquery examples pages is working (e.g. 
http://clickclick-jquery.appspot.com/ajax/form-demo.htm).

A simple test stub:


FormTest.java:
==================
import org.apache.click.Page;
import org.apache.click.util.Bindable;
import org.apache.click.control.*;
import net.sf.clickclick.jquery.control.ajax.JQForm;

public class FormTest extends Page {

        private static final long serialVersionUID = 1L;
        @Bindable protected JQForm form = new JQForm("form");
        
        public FormTest() {
                form.add(new TextField("test"));
                form.add(new Submit("submit"));
        }
}


form-test.htm:
==================

$form





Submitting the form leads to a Javascript popup showing "Error occured!".



I'd really like to use jquery with Click, but without a working example, the 
start's a bit hard ... (and debugging too).

Best regards

Axel


Am 18.06.2010 02:39, schrieb Bob Schellink:
> Hi Axel,
>
> On 18/06/2010 07:53, Axel Morgner wrote:
>> does anyone know the status of the ClickClick project?
>
> It is still active but undergoing some changes to align with Click core. One 
> of the main features of
> ClickClick was to provide Ajax support. Recently Ajax support was added to 
> Click itself which means
> ClickClick will be reshuffled to align with core.
>
> Basically the jQuery support will be moved to the click-jquery project (hope 
> to do this over the
> weekend)
>
>> Apperantly, there's low activity on http://code.google.com/p/click-jquery/.
>>
>> Some demo examples are not working correctly
>> (http://clickclick-jquery.appspot.com/ajax/form-demo.htm,
>> http://clickclick-jquery.appspot.com/ajax/validation/jquery-validation1-demo.htm).
>
> Nods, I accidentally changed the autobinding setting to default (default was 
> added in Click 2.2.0)
> but haven't updated the examples to the latest version of Click itself.
>
> Kind regards
>
> Bob
>


Reply via email to