Issue with iPad patient selection, is the iPad fully supported on 4.1.2?

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 } ?>
  }
 } );

yehster wrote on Monday, September 23, 2013:

Event models on iPad work differently, but adding a “hover” event seems to make the patient rows clickable on iPad for me.

The short answer is NO iPad is not “fully supported” as the resources to test are limited.

meddev wrote on Monday, September 23, 2013:

That works perfectly. Thanks for the quick response Kevin!