Dear ALL ,, I want to delete records and return them in ajax , i have a table like this :
db.define_table('Cars',
Field('Name'),
Field('Age')
)
and i get all the records to my page using a for loop over the object
the equals db().select(db.Cars.ALL)
what i want is to have a button next to every car to delete it in ajax and
update the records that i am viewing
what is the best way to do this ?
Best Regards,

