I have web application in which there datgrid inside there on last column there is pdf icon. On click of that i get pdf file byte array.
Now, i want to open that pdf in pdf reader/viewer at client side.
For that i have downloaded it as pdf like:
var fR:FileReference = new FileReference();
fR.save(byteArray,"test.pdf");
But, i can't open that pdf in inside viewer. I have searched lots of things but didn't get any solution for that.
My aim is to open pdf file at client side from bytearray which got in response.
Any help would be greatly appreciated.