The grid works fine with the checkbox until i turn inplace to "true" which
resulted in the following error:

Communication with the server failed: Render queue error in
SetupRender[SamplePage:delivered]: The Delivered component must be enclosed
by a Form component.

My parameter for my grid consist of the following checkbox: 

<t:parameter name="deliveredCell">
<input t:type="checkbox" t:id="delivered" value="delivered"/>
</t:parameter>

My page class is just as simple as the following:

private boolean delivered;
public boolean isDelivered() {
        return delivered;
}
public void setDelivered(boolean delivered) {
        this.delivered= delivered;
}
public boolean getDelivered() {
        return delivered;
}

Anyone happen to know why inplace="true" is conflicting with checkbox
components? I could do without an ajax grid but it will be nice to have one.
Any advice is much appreciated.
-- 
View this message in context: 
http://www.nabble.com/Grid-inplace%3D%22true%22-with-checkbox-problem-tp24804892p24804892.html
Sent from the Tapestry - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to