Currently this is not supported, but it's on our roadmap. Based on the params you receive:
http://www.bryntum.com/docs/ubergrid/#! ... ent-rowtap
you can get the row element (use Firebug to see the DOM structure) and do e.getTarget('.ubergrid-row') and simply add a CSS class on it.
http://www.bryntum.com/docs/ubergrid/#! ... ent-rowtap
you can get the row element (use Firebug to see the DOM structure) and do e.getTarget('.ubergrid-row') and simply add a CSS class on it.
Tired of debugging javascript errors in web applications? Try our powerful error logging service RootCause
You have the DOM 'event' so you can ask for its target. http://docs.sencha.com/touch/2.2.1/#!/a ... -getTarget
Tired of debugging javascript errors in web applications? Try our powerful error logging service RootCause
Create a boolean field in the model and a renderer, that can render a checkbox in 2 states. Depending from the state (checked/unchecked) add an according css class to the cell. In the "tap" handler update the boolean field value - row will be refreshed.
Read the API documentation