From 71038f79f5854a8f24cbcb49c9b528a8288aebbf Mon Sep 17 00:00:00 2001 From: Kevin McCormick Date: Tue, 13 Nov 2012 18:49:49 -0600 Subject: [PATCH] edihistory -- outline selected row in csvTables tab --- interface/billing/edih_view.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 */ -- 2.11.4.GIT