C
|
cgphp 10/6/2012 |
Try to remove the return; statement from the last section of your transfer_email function. |
W
|
wildwally author 10/6/2012 |
Try to remove the return; statement from the last section of your transfer_email function.
|
C
|
cgphp 10/6/2012 |
Keep firebug opened when you press the button and check the console for errors. Make sure AE_Transfer_Requests_list.php is the real name of the page. |
W
|
wildwally author 10/6/2012 |
Keep firebug opened when you press the button and check the console for errors. Make sure AE_Transfer_Requests_list.php is the real name of the page.
global $conn;
|
C
|
cgphp 10/7/2012 |
Remove single quotes from the where clause: $query = "select * from dbo.AE where AEID = ".$keys['AEID']; |
W
|
wildwally author 10/7/2012 |
I wish it was something as simple as you suggest - but it did not work. |
C
|
cgphp 10/7/2012 |
If you you are selecting only one record on the list page the correct code is: $query = "select * from dbo.AE where AEID = ".$keys[0]['AEID'];
|
W
|
wildwally author 10/7/2012 |
If you you are selecting only one record on the list page the correct code is: $query = "select * from dbo.AE where AEID = ".$keys[0]['AEID'];
|
C
|
cgphp 10/8/2012 |
You are right, $keys[n][field_name] is only valid for list pages. It's hard to say what's happening without seeing your application. |
W
|
wildwally author 10/8/2012 |
Are you able to recreate the same problem in another instance? Or is this isolated to me? |
C
|
cgphp 10/8/2012 |
How many records does the following query return ? $query = "select * from dbo.AE where AEID = ".$keys['AEID'];
|
W
|
wildwally author 10/8/2012 |
How many records does the following query return ? $query = "select * from dbo.AE where AEID = ".$keys['AEID'];
|
C
|
cgphp 10/8/2012 |
Post your application on the demo server and send me the demo link. I will try to debug the button request. |
W
|
wildwally author 10/9/2012 |
Getting errors trying to upload - "Unspecified error Communication Link Failure" and "Unable to create the database script" <BR><BR><BR>Are there other instances of this happening?? I found a couple of a similar nature looking through the Forum - but not sure if any resolution was found because the famous "upload to demo account and file support ticket" ended the conversation.<BR><BR><A href="http://www.asprunner.com/forums/topic/19430-customquery-and-button-events/">http://www.asprunner.com/forums/topic/19430-customquery-and-button-events/</A> |
C
|
cgphp 10/9/2012 |
You have to ask for custom support. It's hard to say what's happening without seeing your code. |
W
|
wildwally author 10/9/2012 |
You have to ask for custom support. It's hard to say what's happening without seeing your code.
|