So I’ve just generated a browse/edit screen pair with the wizard like I’ve done hundreds of times before. Like usual, I need to control the width of some columns on the browse. No big deal, again, done this hundreds of times before.
Except this time the widths are totally ignored. No matter what I do, when I run the app, the actual widths on the screen are exactly the same every time. I’ve tried different widths, run Gradle’s clean
task, you name it - nothing.
All my other browse screens have manually set widths on their columns and they work.
But not this one. What can cause manually set widths to be ignored?
<columns>
<column id="number" caption="msg://number.caption" width="425px"/>
<column id="dateOfOrder" caption="msg://dateOfOrder.caption" />
<column id="dateOfService" caption="msg://dateOfService.caption" />
<column id="dateOfInvoice" caption="msg://dateOfInvoice.caption" />
<column id="patient" caption="msg://patient.caption" />
</columns>
Is how the XML looks right now, but I’ve tried it with 150/150/150/150 (which should cause the first 4 to be 150 wide and the patient
column to take up the rest, which is what I actually want)… other values —> all ignored!