This topic is locked

What values are available from the row in an inline edit?

7/7/2025 9:47:47 AM
PHPRunner General questions
A
asawyer13 authorDevClub member

I am trying to do an inline edit on a row.

It looks like in my Custom Record Update the only record values I see are the ones that are being used in the inline edit.

Does that make sense? Can I see all the column values so I can update other tables as needed?

How can I dump the $values array to confirm that only the inline edit values are in it?

Alan

A
asawyer13 authorDevClub member 7/7/2025

I found this:

Update Selected: When using Update Selected, the $values array in the BeforeEdit event will only contain fields selected by the user for update.

How can I at least get the primary key of the row so I can go get the other data I need.

Alan

G
Grdimitris 7/7/2025

From PHPRunner manual, look at Grid Row JavaScript API
row.getKeys() returns an array of key field values of the record.