To disable line-item inventory detail button in quotes. The following function is used.
function hideInventoryDetailButton() {
try {
$('#inventorydetail_helper_popup').hide();
$('[title="Delete"]').hide();
} catch (error) {
log.error("Error @hideInventoryDetailButton", error);
console.log("Error @hideInventoryDetailButton", error.message)
}
}