meddev wrote on Monday, September 23, 2013:
Ran into an issue using and iPad and selecting a patient from the list generated from “Patients” on the left menu. I’ve tried Chrome and Safari and my iPad does not allow me to select a patient from the list. I did not find any posts about this so I assume that works for everyone?
I took a quick look at the page source and dynamic_finder.php and there seems to be some type of global called concurrent_layout that is involved but the row click seems like it should work either way. Can anyone shed any light?
// OnClick handler for the rows
$('#pt_table tbody tr').live('click', function () {
var newpid = this.id.substring(4);
if (document.myform.form_new_window.checked) {
openNewTopWindow(newpid);
}
else {
top.restoreSession();
<?php if ($GLOBALS['concurrent_layout']) { ?>
document.location.href = "../../patient_file/summary/demographics.php?set_pid=" + newpid;
<?php } else { ?>
top.location.href = "../../patient_file/patient_file.php?set_pid=" + newpid;
<?php } ?>
}
} );