ChecboxRenderer not working

Hi all,
I’m using CheckboxRenderer from addons repository. I’ve set up ivy.xml and ivysettings.xml as written in the download page and my grid now looks like this:

Grid grid = new Grid();
grid.addColumn("recordStatus", String.class);
grid.addColumn("ordLineDay", Long.class);
grid.addColumn("ordLinePay", String.class);
grid.addColumn("autoAcceptance", Boolean.class).setRenderer(new org.vaadin.grid.cellrenderers.editoraware.CheckboxRenderer());
                
for (Line line : list)
{
     grid.addRow(line.getRecordStatus(), line.getOrdLineDay(), line.getOrdLinePay(), line.getAutoAcceptance());
}
grid.setSizeFull();
layout.addComponent(grid);

well, this code is not rendering my autoAcceptance column at all. I’ve also tried with BeanItemContainer, but it is showing only columns placed BEFORE my CheckboxRendere-ed column.
Am I doing something wrong? Is there any known bug for this addon?

You are probably getting a client-side exception.
Try appending “?debug” to your URL. This will show any client-side exceptions.

I tried to use the CheckBoxRenderer back in August. My notes from then says:

[code]
I have tested out the CheckboxRenderer from grid-renderers-collection-addon.
Didn’t work in alpha3 or 4.(Uncaught client side exception)

Worked in a test project in 7.5.4, but only accepts clicks on the checkbox in the editor row
[/code]My problems might just have been because I was building against prerelease versions of vaadin. Can’t complain then.
You don’t say which verion you’re building against.

This CheckboxRenderer wasn’t suitable for us, so we don’t use it anymore.
We have received a prerelease of a new one from Vaadin which works better for us. Hopefully it will be part of 7.6.0?