Hi,
I have submit action for click button as I am using events to get the data from parent and child blocks.
So intead of using navigate option I'm using Javascript in serverside.
WHen I use the logic
"window.open('/abc/status.aspx?ProdID=3370724', '_blank')" it works as expected and opens the url in new tab.
But if I pass the ProdID dynamically with parameter, productId =3370724
"window.open('/abc/status.aspx?ProdID='"+ productId +",'_blank')" it fails. How to make this work.
Appreciate your inputs.
Regards,
Ramya
hi @Ramya somashekaraiah
try with this
var urlWithParams ='/abc/status.aspx'+ '?ProdID=' + productId ; // Open the link in a new tab window.open(urlWithParams, '_blank');
hope this will help you.
Prince