Ho do you represent the table data in the SuiteCRM module?

Hi Jordan

I used Javascript (jQuery) to set default values for the fields (inserting HTML code) saving the file in <module_name>Edit.js

$(document).ready(function(){
	
	var v_html = `<table style="border-collapse: collapse;" border="1"> ...`;
        $('#t_const_vit').html( v_html );

} );