M
|
myPCdoctor 9/13/2008 |
I may be out to lunch as I'm still relatively new at runner. But I had a similar circumstance so what I did was:
|
![]() |
Sergey Kornilov admin 9/14/2008 |
McCree Lake, |
M
|
mccreelake author 9/15/2008 |
Thanks for your help Sergey. strSQLUpdate = "UPDATE GrpMng_Attnd_Evn_GrpAffAttn_Edit " |
![]() |
Sergey Kornilov admin 9/16/2008 |
Print your query on the web page and run it manually against your database to see what's wrong with it. |
M
|
mccreelake author 9/17/2008 |
Thank you. Can you tell me how to print it on the web page? I am not sure how to do that. When you say test it manually against my database, do you mean from the ASPRunner application or in the database itself? |
J
|
Jane 9/17/2008 |
To print query use Response.Write statement: strSQLUpdate = "UPDATE GrpMng_Attnd_Evn_GrpAffAttn_Edit " strSQLUpdate = strSQLUpdate & "SET Attendance = '" & dict("Attendance") & "',Notes = '" & dict("Notes") & "' " strSQLUpdate = strSQLUpdate & "WHERE EventClientGAID = " & dict("EventClientGAID") Response.Write strSQLUpdate
|
M
|
mccreelake author 9/17/2008 |
Okay. I was able to figure it out. Thanks for your help! Now, my question is how to get users back to the master table once they have used inline edit to change the information. Since I am using BeforeEdit = False it updates that record, but it appears to the end user that nothing has happened. Is there a way, once record is save or the SAVE ALL button is pressed that the users can be directed back to the master table list and that I could refresh that page to show the changes? |
J
|
Jane 9/18/2008 |
Hi, |
M
|
mccreelake author 9/18/2008 |
Is there anyway to use the script with events that you use when the user clicks the cancel button on the table view page? |
J
|
Jane 9/19/2008 |
Hi, |