Because documentation doesn’t have it, and after search from the source, I find out how to tweak the linkInvoke in a column.
Rather than just doing:
public void invokeEdit() {...}
We can use also:
public void invokeEdit(Entity entity, String columnId) {
MyEntity myEntity = (MyEntity) entity;
//Do something with it
}
I’ll just put it here. And maybe documentation team can put in the doc too? It will be helpful for others.