A
|
acpan 1/12/2020 |
Maybe you can: |
A
|
acpan 1/12/2020 |
I think there is an error at Client After event: |
H
|
harveyspecter author 1/13/2020 |
I think there is an error at Client After event: var $data1 = result.record["ID"]; should be var data1 = result["record"]; AND location.href = 'dosyalar_all_edit.php?editid1='+$data1; Should be: location.href = 'dosyalar_all_edit.php?editid1='+data1; Also alert or console.log the values will help you see where the problem is as mentioned in previous post. ACP
VM253:1 Uncaught ReferenceError: data1 is not defined |
![]() |
Admin 1/13/2020 |
You need to proceed step by step. As a very first step you need to make sure your SQL query in Server event is correct and returns results. |
A
|
acpan 1/13/2020 |
data1 is probably empty, may be your SQL returns no result or error.
|
H
|
harveyspecter author 1/13/2020 |
You need to proceed step by step. As a very first step you need to make sure your SQL query in Server event is correct and returns results. https://xlinesoft.com/phprunner/docs/troubleshooting_custom_buttons.htm
|