In my server-side code, I dynamically create a table, and now I am adding the following code to access a row click.
tr.Attributes.Add("onclick", "window.open('" + root + document.IPT_Name + "/" + document.IPT_Sub_Name + "/" + document.File_Name + "', 'mywindow', 'toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,copyhistory=no, resizable=yes')");
Is there a way to make this work only with a left click and then add another attribute to the right click to go to another location?
source
share