I want to create summary box like for example sales order summary box. In that box I have to show these fields. and below sublist for individual field values. same like sales order record. How we can create this design? Please Help!
field1
field2
'<table align="left" bgcolor="#e0e6ef" style="width:20%;">'
'<tr>'
'<td>'
'<p style="text-align: left;">'+'field1'+'</p>'
'</td>'
'<td>'
'<p style="text-align: right;">'+value2+'</p>'
'</td>'
'</tr>'
'<tr>'
'<td>'
'<p style="text-align: left;">'+'field2'+'</p>'
'</td>'
'<td>'
'<p style="text-align: right;">'+value2+'</p>'
'</td>'
'</tr>'
You can do like this to add a list of fields and sublist in suitelet:-
Design the size of page according to you.
Thanks,