516
Views
4
Comments
Solved
Iframe web pattern
Question

Hi i want to ask," can someone help me how to make height in iframe fill parents from screen we link it?"

Because right now i used it but can not make height fill parents from url.

thank you

Regards,


Grace

2020-02-28 09-46-54
Eduardo Jauch
Solution

Hi Grace.

If I am not mistaken, the URL parameter is an expression, so you can include variables and so on.
In this case, you can build the URL including the parametters.

Something like: "./test.jsf?parameter1=" + param1value + "&parameter2=" + param2value

And so on.

Let me know if it works.

Cheers.

UserImage.jpg
Grace Mignon

Eduardo Jauch wrote:

Hi Grace.

If I am not mistaken, the URL parameter is an expression, so you can include variables and so on.
In this case, you can build the URL including the parametters.

Something like: "./test.jsf?parameter1=" + param1value + "¶meter2=" + param2value

And so on.

Let me know if it works.

Cheers.

Yes It works.
Thank u :D


2020-02-28 09-46-54
Eduardo Jauch

Hello Grace,

One way I can think of (not necessarily the best) is to apply the following CSS to it:

position: fixed;

top:0;

bottom:0;

left:0;

right:0;

Depending where in the page is the iframe you may need to use z-index to keep it in front of everything.

Cheers

UserImage.jpg
Grace Mignon

Hi Eduardo,
thank you for your help.

btw have any idea how to send input parameter in iframe?
as like i have Screen test.jsd which is inside iframe and need input parameter, i can not parsing the data.
can give me suggestion, pls?
Thank you

Best Regards,


Grace

2020-02-28 09-46-54
Eduardo Jauch
Solution

Hi Grace.

If I am not mistaken, the URL parameter is an expression, so you can include variables and so on.
In this case, you can build the URL including the parametters.

Something like: "./test.jsf?parameter1=" + param1value + "&parameter2=" + param2value

And so on.

Let me know if it works.

Cheers.

UserImage.jpg
Grace Mignon

Eduardo Jauch wrote:

Hi Grace.

If I am not mistaken, the URL parameter is an expression, so you can include variables and so on.
In this case, you can build the URL including the parametters.

Something like: "./test.jsf?parameter1=" + param1value + "¶meter2=" + param2value

And so on.

Let me know if it works.

Cheers.

Yes It works.
Thank u :D


Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.