This topic is locked

Disable inline_edit row command depending on filed value

3/24/2017 11:51:53 AM
PHPRunner General questions
S
simone65 author

Hello everybody, please help me.

Using phprunner 9.,6 in a list page, i would like to disable inline_edit for just certain rows that have in a field (of the row) the values "TOTAL". Is it possible?

Regards, Simone

emendoza 3/24/2017

for inspiration

https://xlinesoft.com/phprunner/docs/disable_record_editing.htm
use the following code in the List page: After record processed event.

-------------------------------------------------------

If ($data ["Status"] == "processed")
{

$record ["inlineedit_link"] = false;

}