Hi All
I am following this pdf tutorial-
http://www.chronoengine.com/downloads/chronoforms/chronoforms-tutorials/v4-tutorials/164-cfv4dbmultirecordloader.html
I have a chronoform which shows list of orders placed by users from "Orders" table
http://www.astrodarshan.com/index.php/paid-user
Username- Djay
Password- pass1234
When the order is processed it shows "Yes" in processed column otherwise it shows "No" with "Done" link.
I want that when order is completed by order processing staff he/she hits the "Done" link and "No" changes to "Yes" with updating "processed" column from 0 to 1 in orders table
In summary I want to edit data on same page without going to another page by clicking "Edit" link
Any hint or sugestion will be helpful
thanks in Advance
Dhananjay
I am following this pdf tutorial-
http://www.chronoengine.com/downloads/chronoforms/chronoforms-tutorials/v4-tutorials/164-cfv4dbmultirecordloader.html
I have a chronoform which shows list of orders placed by users from "Orders" table
http://www.astrodarshan.com/index.php/paid-user
Username- Djay
Password- pass1234
When the order is processed it shows "Yes" in processed column otherwise it shows "No" with "Done" link.
I want that when order is completed by order processing staff he/she hits the "Done" link and "No" changes to "Yes" with updating "processed" column from 0 to 1 in orders table
<td><span id="processed<?php echo $details2['cf_id']; ?>"><?php if($details2['processed']==1)
{ echo "Yes"; }
else
{
echo "No"; ?>
<a href=""> Done</a>
<?php } ?>
</span></td>
In summary I want to edit data on same page without going to another page by clicking "Edit" link
Any hint or sugestion will be helpful
thanks in Advance
Dhananjay
This topic is locked and no more replies can be posted.