Bootstrap table filter ,updateCellByUniqueId , set focus issue on tab key
Description
I am using a bootstrap table filter. I have used the input box using the data-formatter function to update the value of the cell. On change of inputbox value I am updating cell value using "updateCellByUniqueId". The issue is when I change value and hit tab key the focus is set to the filter control - even though I have added jquery code to set focus on the same input.
Here is JSFiddle (https://jsfiddle.net/Jetal15/bLvcg3p4/19/)
Follow below steps for this scenario:
- Filter on department say - Deparment-1
- Change input box value and press tab key focus goes to Department dropdown - rather than input box
How to fix this ?
Example(s)
No response
Please provide an Online Example to show your problem. Thanks!
Here is the example https://live.bootstrap-table.com/code/JetalS/14854
Looked UpdateCellByUniqueId - it calls function "_updateCellOnly". This function has code - "this.resetView();" - I think this sets focus on filter control. It can modify by passing true/false parameter to "_updateCellOnly" function to call "this.resetView();" or not.
@djhvscf could maybe an issue with the new cache you added ?