Add Button on Item Sublist

if ((scriptContext.type === scriptContext.UserEventType.EDIT ||
                    scriptContext.type === scriptContext.UserEventType.CREATE) && curRec.type === 'purchaseorder') {
                    const itemSublist = form.getSublist({ id: 'item' });
                    itemSublist.addButton({
                        id: 'custpage_calc_pieces',
                        label: 'Calculate Pieces',
                        functionName: 'calculatePiecesForLine'
                    });
                }

Leave a comment

Your email address will not be published. Required fields are marked *