I’ve a problem in PHPMaker (v2024.15), setting column WIDTH in Setup Field.
In fact, differently from which explain into
if i insert 200 or 200px or other value, PHPmaker generate always “min-width: 200px;”, also if i want exactly the width I’ve specified.
And, if I wrote, in column width, a css style like “width: 200px;”, NOTHING was generated in PHP code.
I’ve test all possible format, with or without ", ', etc
Only mode to specify WIDHT for all row of a specific column, is using Row Rendered event (common), specify the PageID. And all goes well
For example
if (CurrentPageID() == "list" || CurrentPageID() == "view") { $this->pratiche_note->CellCssStyle = "width: 620px;"; }