Hi
Using PHPMaker V2025.11
On my list page i want to hide the field name, not the content of that field .
Pointers appreciated
Kind Regards
John B
Hi
Using PHPMaker V2025.11
On my list page i want to hide the field name, not the content of that field .
Pointers appreciated
Kind Regards
John B
Assume you want to hide OrderID field, then simply put this following code in Page_Load server event that belongs to the List Page:
$this->OrderID->Visible = false;
Hi
So this does hide the field name as asked, but it also hides the the contents of the field
Basically I have a list pages which shows images and currently as well as showing the images is also displays the field name image and that’s what I would like to hide
Did you want to hide only the Field’s caption in List Page? If so, then using the same example above, you may simply put this following code in Page_Load of List Page instead:
$this->OrderID->Caption = " ";
Hi
I tried this on Page Load for the relevant page and it works just fine
Language()->setFieldPhrase("images","image","fldcaption", " ");
John B