Change focus behaviour for check-box widget

0
I have a list view with Product objects. Each Product has a Name(String) and Status(Boolean) attributes. The list is sorted by status at first and than by Name. When I change status for some item in the middle of the list by clicking checkbox, the item goes to the top of the list. At the same time, browser`s focus follows this item to top too. I want to stay on the same level of the list. Can I change default widget behaviour somehow? Or do I need to apply some JS? Or create some non-persistent entity and store there some index for focus? Thanks in advance.
asked
1 answers
0

Looks like I fixed the problem :) All you need to do, is to add FocusPrevious from Webactions to your nanoflow (the one that is trigered when user presses on checkbox). Hope it will be useful for somebody.

answered