Incorporating jQuery, you can utilize the following code to set the disabled property on <input>
and <button>
tags in order to disable them:
$("#row_id input, #row_id button").prop('disabled', true);
The row_id specified corresponds to the id of the row containing controls that are to be disabled.
If dealing with links, this code ensures that when clicked, no action will be taken:
$("#row_id a").click( function (e) {
e.preventDefault();
} );
To further customize the styling, adding classes to these elements is recommended. If guidance is needed on how to achieve this, feel free to inquire.
You can find more information about disabling links in a related question at jQuery disable a link