10-23-2018 06:49 AM
Hi,
In GMSC2016 I have a list containing about 25 columns ie.:
<Form name="ListForm1" editable="true" idfield="id" table="table1" pagesize="20" order="SQL[Order By nazwa]" isfilterareaopen="false">
<FormTab name="NewTabPage1" editable="true" visible="true">
<FormGroup name="NewGroup1" editable="true" visible="true">
<FormField name="column1"... />
...
<FormField name="column25"... />
</FormGroup>
</FormTab>
</Form>
The problem is, that the last column is only partially visible. Moreover, when I move scroll to the right it returns back to the left.
Is that a way to change this behaviour, or maybe to change columns width?
10-24-2018 12:39 AM
Hi Marcin,
This seems the be an introduced issue with Java 8 Update 191 - are you using this version? If so, can you perhaps test downgrading to Update 181 to see if it resolves the problem?
I'd recommend Java SE Runtime Environment 8u181 which you can download from here:
https://www.oracle.com/technetwork/java/javase/downloads/java-archive-javase8-2177648.html
This issue is currently investigated by the support team.
Regards,
Jan
10-24-2018 12:47 AM
Yes, on JRE 8u181 it works properly.
10-24-2018 10:17 AM
Hi Marcin,
Please log a ticket and we will file a Jira on this issue. However, it looks like a Java issue more than a GMSC issue therefore the Jira will likely be categorized as "Pending Outside Support".
Regards,
Frank
11-07-2018 09:57 AM
Anyone tried Java 8 u192 ?
https://www.oracle.com/technetwork/java/javase/downloads/jre8-downloads-2133155.html
11-07-2018 10:09 PM - edited 11-07-2018 10:14 PM
I've checked java8u192.
After scrolling horizontal scroll to the right it not returns back to the left, last column is fully visible too.
The only one problem is that width of the form header is still smaller than width of the table.
11-15-2018 11:55 AM
Thanks for the info, I guess Java made some fixes...still work in progress though.
03-27-2019 03:57 AM
I've found temporary workaround of the problem. The solution is to use css on the form:
/*Align main component to the left*/
.ig-root
{
margin-left: 20px;
margin-right: 20px;
}
/*Set header width*/
.ig-root-container-column-content
{
width: 1550px;
}
/*Remove extra column*/
.ig-root-container-column-content .ig-item.ig-list {
width: 1550px;
}
/*Set footer width*/
.ig-form-footer-wrapper
{
width: 1550px;
}