BootstraoTable dynamic editing cell

as shown in the figure, I formatter an input box in a column of table. What I want to achieve now is that after entering the value in the input box, the cells in the last two columns respond and reassign the value. Can it be achieved?

Mar.12,2021

if you use jQuery, to hook up the change event of input, calculate the appropriate value and fill in the next two boxes. The reference code is as follows:

$('.yourInput').bind('input', function() { 
  //value
  $(this).closest('tr').children('td.yourColumn').html(value)
});
Menu