within GET : // Serialize the array to a JSON string let itemsArrayString = JSON.stringify(itemsArray); // Create a temporary file in the File Cabinet let fileObj = file.create({ … Continue reading Add excel button with suitelet
Tag: Button
Suitelet call not working on button click
Scenario: When adding buttons in the suitelet using HTML code. On the button click, it should redirect to another suitelet page, but it is redirecting to a blank page. Solution: This will happen when we use <button>tags and not mentioning the type properly. So that, it will work like default submit action. Mention the button… Continue reading Suitelet call not working on button click