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

Question

Question

saving table in laserfiche info appears vertical

asked on September 6, 2022

My form has a table. When I am viewing in the process all looks fine, but when I have to check it via the Monitoring page or save it into Laserfiche, it appears like this, rather than across the page. The total looks as it should, but the other two columns don't.

I have played with field width, ensured there is no coding on the table, etc. 

Any ideas on hoe to fix the issue?

0 0

Replies

replied on September 6, 2022

That shouldn't normally happen. What field width do you have set on the table column variables? Anything other than x-large could be a problem.

Inputs have a minimum width in the Forms CSS, but when everything is read only (history, saved to repository, etc.) those inputs become div elements and they may no longer be protected by that.

I'd make sure your fields are set to x-large. If that doesn't work, try without any custom CSS at all because the read-only content may be affected by something that's not affecting the live form.

Worst-case scenario, you can override it with CSS like the following:

table .cf-field > div {
    width: 100% !important;
}

 

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

Sign in to reply to this post.