How to drill down a report from a RDLC by clicking any where in the row

286 views Asked by At

In RDLC reports we can open a drill down report only by clicking the text in a row.

How to open the drill down report by clicking any where in the Row?

1

There are 1 answers

0
rgb On

Try this Code

 $(document).ready(function () {
        $("tr").click(function (event) {
            var a = event.target.firstChild;
             if (a != null) 
                 if (a.localName == "a") 
                      a.onclick();
        });
 });