Hello there,
I am using new table component and really liked that you have added the change row event. Nevertheless, I have noticed two issues:
-
Whenever I change any of the columns' width the changeRow() event is triggered and its action is fired, this happnes even if I have the row selection property as none.
Screen Grab -
When clicking anywhere on the row itself, we can have three scenarios depending on the row selection property for the table:
-
Row Selection -> single:
When we click on a row, it is selected, the event handler is triggered. (This is correct) -
Row Selection -> None:
When we click on a row, it is not selected, the event handler is triggered. (This is not correct)
Screen Grab -
Row Selection -> Multi:
This one is more complex so I'll split into two cases:
a) When we click on a row while no other rows are selected, it is not selected, the event handler is triggered. (This is correct)
b) When we already have some rows selected and click on another row, it is not selected, but the event handler is triggered. (This is not correct)
Screen Grab
I hope my description is clear and of help