Hi,
There is not built in method to do this, but you can do it like this. Add this to the Custom JS:
function insertHTMLInSBS(){
var html = "Put your HTML here";
$("#sbs_Field_YOURFIELDINTERNALNAME").after("<td>"+html+"</td>");
}
Change “YOURFIELDINTERNALNAME” with the name of the field you want to append to.
Add the function name “insertHTMLInSBS” to the “Click function name” field in the tab where you want to use this functionality.
Hope this helps,
Alexander