I want to make a CellTable that shows validation errors by changing CSS style on wrong cells. I have started working with this gwt showcase example. My problem is that validation is executed only when user changes a cell (overriding onBrowserEvent() and render() in the Cell class), but I need to run some validations that have to be executed when a button is clicked.
I suppouse that the way is calling to table.redraw() but i have no clue about how to access "ViewData" class in order to mark it as invalid without using bad practices.
Thanks in advance.