Discussions
Read on for the latest updates including:
• Agenda Builder launch
• SuiteWorld On Air registration
• New NetSuite Prompt Studio Contest
• And more!
Check out this thread to learn more!
Don’t miss your chance to meet our SuiteGurus—NetSuite Support professionals and subject matter experts with extensive experience in select product areas, including OneWorld, Advanced & Basic Accounting, Supply Chain Management, Receivables & Payables, CRM, Account Administration, and the SuiteCloud Platform. Full Conference attendees can prebook exclusive 30-minute one-on-one sessions for your product questions.
Spots are limited! Register through your Agenda Builder and find SuiteGuru under Agenda Enhancements.
Add Image from custom Image field on Proposal to Advanced PDF/HTML template
I have created a custom transaction field where type=image. We upload images of various sizes and types. I am trying to add the image to and Advanced template and have tried: <#if record.custbody_proposal_drawing?length != 0>${record.custbody_proposal_drawing}</if>, ${record.custbody_proposal_drawing}, <img src=${record.custbody_proposal_drawing}/>, and <img src="https://system.na1.netsuite.com/core/media/media.nl?id=/${record.custbody_proposal_drawing}" />. I added the following to the CSS to account for various image size:
table.image td {
vertical-align: text-top;
max-width: 100%;
height: auto;
}
Any ideas how I can get this image field to pull into the template and control the sizing via css?