Hello!
“Display field” of phpmaker v2020 (comparing to v12) displays “Row rendered value” instead of “CurrentValue” of a field.
Assume I have a table “order” and table “order_history” which has field “order_id”.
Field “order_history.order_id” settings:
- Edit Tag → as “Text” and [Use lookup table] is checked
- Lookup Table → (Table name: " order ", Link field: "order_id “, Display field #1: " order_id”, Display field #2: “firstname”)
Table “order” has additional data for field “order_id” in Row Rendered event:
$this->order_id->ViewValue = " “.$this->order_id->CurrentValue.”
Do something";
When I add data to “order_history” table (order_historyadd.php) in field “order_id” I see:
“323
Do something, John”
instead of (so as it was in v12):
“323, John”
Why it takes rendered value and is it possible to Display “CurrentValue” of a field “order_history.order_id” instead of “Row rendered value”?