Document content visible in firefox but not in Edge - CSM workspace
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-09-2024 01:56 AM
Hello,
we have a button on our workspace form of a custom table 'Complaint", and when clicked on it, it shows all the relevant invoices associated with the company of the Complaint. When clicked on each invoice, there will be a pdf shown with some content
We have a similar button on native UI as well and this correctly shows the data, however the one which is on CSM workspace, shows blank page and its not showing any data. Also, this shows correct data in firefox browser wvwn in CSM workspace but not in Edge and Chrome. Could you please help us with this issue?
This is the workspace client script written on complaint table
function onClick(g_form) {
var url = "/old_sp?id=test_invoice_manager&assessor_mode=true&sys_id=" + '2936b8de3b4a1610333b3f3a85e45a44'; //g_form.getUniqueValue(); //gave some valid sys_id for testing //test_invoice_manager is the page
g_modal.showFrame({
url: url,
title: g_form.getValue('number') + " - " + getMessage('Invoice Manager'),
size: 'fw',
height: '50em'
});
}
The one highlighted in yellow is supposed to show content of document while it is blank here