最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Download a sublist data in a CSV file format after "Download Report" button click on suitelet - Stack Overflow

programmeradmin1浏览0评论

I have created a Suitelet script in NetSuite that populates a sublist based on values entered into a textarea field and submitted via a button. This part of the script functions correctly. The sublist population logic is handled within the POST method.

Now, I need to add a "Download CSV" button to the Suitelet. Upon clicking this button, the user should be able to download the data displayed in the populated sublist as a CSV file.

How can I implement the logic to generate and trigger the download of the sublist data in CSV format after the "Download CSV" button is clicked within the Suitelet?"

//Suitelet Code Sample
 function onRequest(context) {
            // Add Textarea ABC Number field
            let ABCField = form.addField({
                id: 'custpage_input_cidn',
                type: serverWidget.FieldType.TEXTAREA,
                label: 'Enter ABC Numbers'
            });
        
            // Add Submit Button
            form.addSubmitButton({ label: 'Submit' });

            // Add empty sublist
            let sublist = form.addSublist({
                id: 'custpage_results_sublist',
                type: serverWidget.SublistType.LIST,
                label: 'Sales Order Items'
            });

            //Remaining logic to add fields to sublist
    
             if (context.request.method === 'POST') {
             //Logic to set sublists based on entered ABC Numbers
             }
             context.response.writePage(form);
            }

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论