C
|
cgphp 11/10/2011 |
Not sure I understand what you mean. Is it a issue related to the query in the Server section ? Is AEID an int field type ? |
W
|
wildwally author 11/10/2011 |
The issue i have is after the server updates the record. It doesn't redirect the page as instructed in the client after. var regexS = "[\\?&]editid1=([^&#]*)";
$sql = "Update AE set JobStatus = '9' where AEID = '".$params["edit"]."'"; |
C
|
cgphp 11/10/2011 |
In the Server section, enter the following code: $sql = "Update AE set JobStatus = '9' where AEID = ".$params["edit"]; |
W
|
wildwally author 11/10/2011 |
In the Server section, enter the following code: $sql = "Update AE set JobStatus = '9' where AEID = ".$params["edit"];
|
C
|
cgphp 11/10/2011 |
Try do debug your code. alert(params["edit"]);
|
W
|
wildwally author 11/10/2011 |
Try do debug your code. At the end of the Client before enter the following code: alert(params["edit"]);
|
C
|
cgphp 11/11/2011 |
Do you have some code in the "Javascript onload" event ? Try to comment out it and rebuild your project. |