From: Kevin McCormick Date: Wed, 14 Nov 2012 00:49:49 +0000 (-0600) Subject: edihistory -- outline selected row in csvTables tab X-Git-Tag: whats-been-changed~486^2~3 X-Git-Url: https://repo.or.cz/w/openemr.git/commitdiff_plain/71038f79f5854a8f24cbcb49c9b528a8288aebbf edihistory -- outline selected row in csvTables tab --- diff --git a/interface/billing/edih_view.php b/interface/billing/edih_view.php index aad0ee166..c6d4571d1 100644 --- a/interface/billing/edih_view.php +++ b/interface/billing/edih_view.php @@ -498,6 +498,8 @@ if (!acl_check('acct', 'eob')) die(xlt("Access Not Authorized")); $(dElem).on(dEvt, cClass, cEvt, function(e) { e.preventDefault(); $(cElem).css({'max-height': 372, 'overflow-y': 'auto'}); + $(this).parentsUntil('tr').parent().siblings().removeClass('outlinetr'); + $(this).parentsUntil('tr').parent().addClass('outlinetr'); $.get($(this).attr('href'), function(data){ $(cElem).html(data); }) var statDialog = $(cElem).dialog({ autoOpen: false, @@ -575,8 +577,8 @@ if (!acl_check('acct', 'eob')) die(xlt("Access Not Authorized")); encrecord.dialog('open') ] }); - }); - + }); + /* ************ * end of javascript block */