Hi All,
asp:TemplateField HeaderText="Vendor Circuit Id">
var windowOptions = "dependent,width=450,height=400,scrollbars=no,resizable=yes,location=no";
function showDetails(t, c, v, b, d) { // added by ab37281 for Circuit Details
alert('YES');
window.name = "FFCL";
t = t.replace("&", "%26")
c = c.replace("&", "%26")
v = v.replace("&", "%26")
b = b.replace("&", "%26")
d = d.replace("&", "%26")
window.open(("circuitDetails.aspx?type=" + t + "&field=" + c + "&vendor=" + v + "&ban=" + b + "&billDate=" + d), "", windowOptions);
}
when we click on hyperlink it should call that javascript function and pass those 4 hidden field value from the grid.
Jignesh KumarPosted Jan 25, 2019, 9:03 AM