This topic is locked

calculate on fly for LIST page

5/19/2016 2:16:32 PM
PHPRunner General questions
S
sawanr author

How can I do the same thing on this https://xlinesoft.com/phprunner/docs/how_to_calculate_values_on_the_fly.htm page on LIST page.
It works on add/edit page, but can't make it to work on list page for inline edit and inline add function

Sergey Kornilov admin 5/19/2016

It will work the same way in inline add or edit mode. Just make sure you adding your code to Javascript OnLoad event of respective Add and Edit pages.

S
sawanr author 5/19/2016



It will work the same way in inline add or edit mode. Just make sure you adding your code to Javascript OnLoad event of respective Add and Edit pages.


It does not, on list page I tried below code
var ctrlPrice = Runner.getControl(pageid, 'Price');

console.log(ctrlPrice)
and I get "false" and then JS error that ctrlPrice.on event not found. So I think it is not able to find that control on list page.