eo_support wrote:Hi,
Unfortunately we are not aware of an easy way to do that now. We have a new build that should come out soon and it supports ClientSideBeforeEditItem and ClientSideAfterEditItem. We will see if that can cover the situation.
Thanks
Yes, there is a way how to do it. Instead checkbox column create a custom column:
<eo:CustomColumn Width="30" ClientSideGetText="on_column_gettext">
<CellStyle CssText="MARGIN: 0px; PADDING-LEFT: 2px;" />
</eo:CustomColumn>and write javascript functions:
function on_column_gettext(column, item, cellValue)
{
return "<input type=\"checkbox\" id=\"checkbox" + item.getIndex() + "\" onclick=\"check_rows(" + item.getIndex() + ")\"/>";
}
function check_rows(rowIndex)
{
alert("Three things are certain: Death, taxes, and lost data. Guess which has occurred.");
}
Try it!