PDF file with dynamic pages

Hi is there any possibility yet to display a PDF File with dynamic pages? Alternatively my project would also work if i could link a html code to a element in my collection. Is there any solution for either one of these cases?

Thanks a lot in advance

Of course this shoulb be possible.

You have a DATABASE?
You have a specific DB-FIELD, where you store all your PDFs ?
You added a HTM-Component onto your dynamic-page?
You connected your dynamic page with your DATABASE?

What do a dynamic-page do ?
-It loads always just one item from your database onto your page.

So what next?

a) now either continuing to go the coding way
b) trying to setup completely without coding (if possible).

To get our current-Data…

a)
$w.onReady(()=>{
	$w('#dynamicDataset').onReady(()=>{
		let currentItem = $w('#dynamicDataset').getCurrentItem();
		console.log("My-Current-Item: ", current);
		console.log("Title: ", currentItem.title);
		console.log("ID: ", currentItem._id);
		//---------------------
		//YOU GOT SOME RESULTS, WHAT NEXT ?
		// LOADING THE RESULTS INTO YOUR HTML-COMPONENT?
		// FROM WHICH DB-FIELD EXACTLY DO YOU WANT TO LOAD?
		
		$w('#html').src = currentItem['yourHtmlLinkFromYourDB'];
		//Or if you want to load it as a HTML-file....
		$w('#html').html = currentItem['yourHtmlLinkFromYourDB'];
	});
});

b) setup a connection between HTML-Component and the dynamic dataset.

But since i do not use possibility - (b), i can not say, if this is posible.

But doing it by code, would be possible.

Thanks a lot for your help, I will try it this way!