How to get clinical notes parameters like in bullet format vertically


How to get History exam parameters like in bullet format vertically, rather than in one single line?

@Param_CapMinds can you pl…


@htuck @Param_CapMinds just realized double clicking in clinical notes body opens this window with editor,
it makes u do all those things as in the pic, but on submitting the post it writes in one horizontal line…
any way to retail the html as we create it?

@Robert_James If I had to guess I’d say the single line output to the encounter summary is intentional, to save screen space so the encounter summary form does not get so long it’s hard to manage. If you wanted it broken into lines you’d need to re-code it on your OpenEMR instance. But I bet @Param_CapMinds has a good hack for that! :slight_smile:

  • Harley
1 Like

Hi Robert James,

Add below code in your interface\forms\clinical_notes\report.php file.

<?php $value['description']=str_replace("\n","< br>",$value['description']); ?>

2.remove text class
before code:
< td class=“border p-1”><?php echo text($value['description']); ?></ span>< /td>

after code
< td class=“border p-1”><?php echo $value['description']; ?>< /span></ td>

I atteched screeshot for your reference

code:

Output:

Thanks
Param
help@capminds.com

wow, the second before and after i couldnt get it.Can you upload the modified file pl.

< td class=“border p-1”><?php echo text($value['description']); ?></ span>< /td>
the above has to be replaced by the below?

after code
< td class=“border p-1”><?php echo $value['description']; ?>< /span></ td>

Can you share your interface\forms\clinical_notes\report.php file. i can modify you.

report.php (2.8 KB)
uploaded

report.php (3.0 KB)

still not working Param.

sorry Robert James.use this file. i hope its working.
report (1).php (3.0 KB)

Thank you it works :slight_smile:

Can you increase the width of narrative pl.

I removed the note category line n the space for narrative increased,
but if we can have note type and note category clubed in one small column, it would be nice.