wanting to add urls for Child Line (child abuse reporting) either per individual user or as a network.
Are you trying to add to a form, create a QuickText, or??? Please explain.
I wanted a link that we could click which would take us to the internet site where we fill out a form online.
For HTML Encounter forms it's really easy. Add the following html tag:
<a href="FULL_HTTP_URL_PATH" >Click here to navigate to Online Form</a>
For Modal Dialog take a look the $mdObject open source component:
$mdObject.emr.window.open(...) or
$mdObject.emr.window.openDialog(url)
(See source at line 1938)
I am not the tech person, so can you explain a bit more- can a provider add this on their own or is it a global html encounter?
You can build a very simple HTML encounter form with just a link and open it with a clinical kit.
You cannot open external link with show_html_form. But you can use a local page to redirect automatically to the external URL using Redirect META tag in the HTML head tag. Providers can create a quick text to open it.
Check the free training on how to create the HTML Encounter form.
I was told we could put a url link in our favorites so that we could go automatically to the Child Abuse website. Then I would like to have it recorded that we filled out a child abuse form online (does not have to record the form)
thanks
I'm confused. Are you trying to fill both "Child Abuse" online form and put the same information into your system? Or just "notify" the "Child Abuse" site that you filled your own form for a specific child? Do you need to search a patient on the "Child Abuse" site?
I did a very similar process for searching and filling a state immunization online form with
$mdObject.emr.window.open(...)
You can use a POST to the online form to send a)user credentials; b) patient information.
Provider can arrive to the specific area on the website.
If you do not need very sophisticated navigation then something simple as <a href="http://ChildAbuse.com/page.html" /> should work.
Thank you, I will work on this and see how it goes!