What I’ve done is override the virtual function listBoxItemClicked() in ListBoxModel class.
The problem is now, that because I’ve overloaded the function, I cannot get the rows to highlight when I click on them. I tried adding a line like this to do the default actions after the overloaded instructions:
// call base function
this->ListBoxModel::listBoxItemClicked(row, e);
Still did not highlight a row when I selected it.
All I want is that when I click on a row, additional things occur (i.e. populate certain TextEditors) however I still need the row to highlight. Any ideas?