How to create a list banner button in a table to down load in pdf the list of records.

ArjunL
Tera Contributor

I have created a list banner button in the problem table to down load the list of related problem to incident,

 

the scripting part i dont know what to write.

.

This button is similar to export pdf in list view.

ArjunL_0-1716205434916.png

 

silmilar kind of button neeed in  problem banner. to down load the list of records.

 

ArjunL_1-1716206017779.png

 

 

21 REPLIES 21

Ankur Bawiskar
Tera Patron
Tera Patron

@ArjunL 

so user will select multiple records and list banner when clicked should download pdf of those selected records?

if yes then this should work

1) get the selected records

2) form the url for attachment and iterate and open in new tab and the pdf will be downloaded

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

@ArjunL 

solution for something similar I shared 5 years ago; check that and enhance. I shared it for list bottom or list choice; you select List Banner

I want to generate a pdf of selected records in a list? 

If my response helped please mark it correct and close the thread so that it benefits future readers.

Regards,
Ankur
Certified Technical Architect  ||  9x ServiceNow MVP  ||  ServiceNow Community Leader

I have used this script, but it is kept on downloading

 

 

 

function downloadPdf(){



  var checked = g_form.getUniqueValue(); // get's the sys_id of the checked records


  var query = "sys_idIN" + checked.toString();


  alert(query);


  var rows = 1; // rows to be sent to the pdf function


  alert(rows);


  var view = "default"; // set this to default for columns present in default view for list layout


  //var view = ""; // set this to empty if you want all the columns present in the list layout including the customized ones.



  var dialog = new GwtPollDialog('u_table', query, view, 'unload_pdf');


  dialog.execute();


}
 
 
ArjunL_0-1716209295004.png

 

 

ArjunL
Tera Contributor

@Ankur Bawiskar it is keep on loading the down load pop up, but i am not able to down load the file