Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Web Pages in QlikView

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

3 Replies
Anil_Babu_Samineni

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

Capture.PNG

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Anonymous
Not applicable
Author

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.

Anil_Babu_Samineni

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?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful