How to get History exam parameters like in bullet format vertically, rather than in one single line?
@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!
- Harley
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.