Problem with turn off debug information mode
You have a problem when application try to use $compileProvider.debugInfoEnabled(false); We always disable this in production for a significant performance boost.
For example function saveColumnSizes() use angular.element(column).scope() which dont work when we set to false debugInfoEnabled.
I was not aware of this. Do you have any suggestions on how to avoid this but still access the scope?
I am not completely following. Maybe, instead of accessing the scope directly, I will have rzCol and rzTable communicate through the controller.
Instead of scope() we can use angular.element(column).text(). This way we can avoid this issue.