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)
});
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3db00-2c3be.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3db00-2c3be.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?