PDF View High Frequency Audiometry

I was wondering if there are limitations on being able to view high frequency manual audiometry plots and tables in the PDF view. I am able to see the standard frequency but am unable to see the high frequency even thought it is written in the protocol in the pdfResponseArea. Thank you!

Hi @NatalieS,

The PDF response area does support high frequency manual audiometry plots and tables (we are currently working to improve the formatting but it should still display the results).

Can you please share the code for the PDF page as well as the code for the standard frequency and high frequency audiometry pages?

Thanks!
Tristan

Thank you Tristan for the response, in copying the PDF protocol I noticed that I was missing " " after the displayIds for the high frequencies. After adding those it worked great!

{
“protocolId”: “export_and_submit”,
“pages”: [
{
“id”: “pdf_export”,
“title”: “Basic Audiometry Results”,
“questionMainText”: “Basic Audiometry Results”,
“instructionText”:“Review and select Submit to Export as PDF”,
“responseArea”:{
“type”: “pdfResponseArea”,
“displayResults”: [
{
“text”: “Subject Information”,
“displayIds”: [“subject_info”]
},
{
“text”: “Pre Questionnaire”,
“displayIds”: [“Pre_Questionnaire”]
},
{
“text”: “Post Questionnaire”,
“displayIds”: [“Post_Questionnaire”]
},
{
“text”: “Automated Audiometry (Bekesy Tracking)”,
“displayIds”: [“autoaudl_plot”, “autoaudl_results”]
},
{
“text”: “Manual Audiometry”,
“displayIds”: [“manual_audiometry_plot” ,“manual_audiometry_table”]
},
{
“text”: “Manual Audiometry High Frequency”,
“displayIds”: ["manual_audiometry_hi_freq_plot, manual_audiometry_hi_freq_table"]
}
]

      }
    },

@NatalieS Great, I’m glad you were able to identify and resolve the issue!