i have two functions-one function for creating pdf from ssrs and download it
and another function for downlading multiple pdfs in zip folder.
on one button click i m calling both functions.But it excute only one fuction ,second function not calling
Please help me.
satheesh dPosted Nov 8, 2021, 11:55 AM
The two different functions implementation can be written in two different function and then another function is created to call these two functions and the click event can be called for this function.
function1() { alert("function1 is called"); }
function2() { alert("function2 is called"); }
mainfun() {
function1();
function2();
}
This one of the way to call two different methods in single click event.
Ravinder SharmaPosted Sep 3, 2021, 3:39 AM
Sachin SinghPosted Sep 2, 2021, 10:26 AM
Abhishek ChadhaPosted Sep 2, 2021, 9:23 AM