I have extended the default grid and am overriding the removeRow event. The handler get a reference to the "row" which is the rendered tr (HTML)
I can get the model that is bound to that row via
var model = this._modelForContainer(row)
However, how do I get access to the model instance that is bound to the grid? I have a specific method on the model that needs to be invoked from the removeRow event handler.
I can get the model that is bound to that row via
var model = this._modelForContainer(row)
However, how do I get access to the model instance that is bound to the grid? I have a specific method on the model that needs to be invoked from the removeRow event handler.