You are viewing limited content. For full access, please sign in.

Question

Question

Divided screen in forms.

asked on August 14, 2017 Show version history

Hi Experts
i have a user requirement and i don't know how to solve it yet.

I have a screen in forms, i show a document as a html object and some capture fields. The information to fill these fields is gotten from the document in html object.

Is there any way to havr two scroll bars, one for the html object and other one for navigate in the capture fields?

The idea is not to lose the view of document and add fields, there are no limit for the collection of fields.

0 0

Answer

SELECTED ANSWER
replied on August 15, 2017 Show version history

Sounds like you need to find the id of the Collection (the 'q' value), then in the CSS for the form set the height and set the overflow behavior.

For example,

#q39 {
  height:800px;
  overflow:scroll;
}

Just replace q39 with whatever id your collection has (should be visible in the CSS tab) and set the height you want.

0 0

Replies

replied on August 14, 2017

Hi Carlos,

Are you using embedded form on your custom webpage, or is it a custom HTML field containing the document on the forms page?

Can you give more details on the HTML content for custom webpage or custom HTML field? We need more information to reproduce the scene before we can find a way to resolve the issue.

0 0
replied on August 15, 2017 Show version history

Hi Rui.

I am ussing a custom HTML field whith this code:

<p><iframe width="85%" heigth="800" src="lfserver/DocView.aspx?db=Operaciones&amp;docid={/dataset/id_Laserfiche}" aligin="center"></iframe></p>

 

After the HTML field, i use a collection with the fileds.

 

Thanks in advance.

0 0
SELECTED ANSWER
replied on August 15, 2017 Show version history

Sounds like you need to find the id of the Collection (the 'q' value), then in the CSS for the form set the height and set the overflow behavior.

For example,

#q39 {
  height:800px;
  overflow:scroll;
}

Just replace q39 with whatever id your collection has (should be visible in the CSS tab) and set the height you want.

0 0
replied on August 16, 2017

it's working.
i use two section together.
#q1,#q2 {display: inline-block}
#q2 {height:800px;overflow:scroll}
q2 is the section for the collection.

Thanks a lot.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.