/* (non-Javadoc)
* @see net.pleso.framework.client.ui.controls.dataGrid.interfaces.IDataGridEventListener#selectionChanged(net.pleso.framework.client.ui.controls.dataGrid.DataGrid)
*/
public void selectionChanged(DataGrid sender) {
// gets current selection row from grid
IDataRow selectedRow = dataGridWrapper.getSelectedRow();
// check all action buttons controls and rebind each control with new selected row
if (this.actionButtons != null) {
for (int i = 0; i < this.actionButtons.length; i++) {
if (this.actionButtons[i] != null) {
this.actionButtons[i].bind(selectedRow, null);