Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi all,
how can i open Qlik view file on press button using javascript or anyother lang....
or if i can make file dashboard inside other product ????
try batch file
??? sorry but i cant understand
Hi,
Try this
<html>
<head>
<script type="text/javascript">
function runApp(st) {
WshShell = new ActiveXObject("WScript.Shell");
WshShell.Run (st,1,false);
}
</script>
</head>
<body>
<!-- Two ways to create a link to run the app. -->
<font onClick="runApp('file://c:/winnt/notepad.exe');" style="cursor: hand;"><u>Notepad</u></font>
<br>
<!-- Or use <a> descriptor -->
<a href="runApp('file://c:/test.bat');">Batch File</a>
</body>
</html>
Test.bat: Batch file consists of the file path of your qlikview and Qlikview exe
C:\Program Files\QlikView\qv.exe" "C:\Documents and Settings\qv_dev\myqvwfile.qvw
Also check this
http://community.qlik.com/message/202198
Regards,
Jagan.
Hi,
Not sure that I understood you. But why you don't try build in action
Regards,
Sokkorn
thanks all
and thanks jagan mohan for solution its work