Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to showcase some HTML contain in the container in QlikView Object.
I have gone through below link -
Embedding web objects - basic questions
Its useful and in similar fashion I will need it, but just using a html path url.
I have also tried WebPageViewer2 extension object, but in that case, if we have to drive the QlikView on the basis of selections in HTML part, how can I achieve it.
Please let me know your inputs on same.
Thanks & Regards,
MK
I am not sure you expecting from similar this
MySource:
LOAD
RowNo() as Row,
Rand() * 1000 as Value
AUTOGENERATE(10);
HTMLOutput:
LOAD
[<html>]
INLINE [
<html>
<head>
<title>HTML Output</title>
</head>
<body>
<h1>HTML Output Example</h1>
<table border=1 cellpadding=5 cellspacing=0>
<tr><td><b>Row Number</b></td><td align=right><b>Value</b></td></tr>
];
CONCATENATE(HTMLOutput) LOAD
'<tr><td>Row ' & Row & '</td><td align=right>' &
replace(num(Value, '#,##0.00'), ',', '-') &
'</td></tr>' as [<html>]
RESIDENT MySource;
CONCATENATE(HTMLOutput) LOAD
[<html>]
INLINE [
<html>
</table>
</body>
</html>
];
DROP TABLE MySource;
STORE HTMLOutput INTO Z:\MyOutputFile.html (txt);
DROP TABLE HTMLOutput;
Finally, Output seems this
I want to make it so simple that, the HTML page inside container should be interactive and depending on same, it should associate values in Dashboard and provide reports.
Mrudul K wrote:
I want to make it so simple that, the HTML page inside container should be interactive and depending on same, it should associate values in Dashboard and provide reports.
I am not surely understand what you are acheiving?