qwizkool / QwizKoolNode

QwizKool Node.js based implementation
0 stars 0 forks source link

QwizBook authoring : Delete a qwizbook #45

Closed kgvinod closed 11 years ago

kgvinod commented 11 years ago

Delete qwizbook when clicking the '--' button.

kgvinod commented 11 years ago
kgvinod commented 11 years ago

Target date: Apr 04th

Induc commented 11 years ago

Doing deletion of qwizbooks in qwizbook authoring form. Need to implement server api to delete checked qwizbooks.

kgvinod commented 11 years ago

Also implement Jasmine test case for deletion

kgvinod commented 11 years ago

Revised target date : Apr 08

seethalag commented 11 years ago

on doing .remove function model Qwizbook.js(take pull for branch create-qwizbook->model->Qwizbook.js->line 362 )

dynamic values are not deleting the model.

if we do (for eg : QwizbookModel.remove({"_id":"515cfec872120eef0800001a"},function(err,deleteQbook){ ) it will delete the model.

kgvinod commented 11 years ago

To be done:

kgvinod commented 11 years ago

When "check all" is selected, the checkbox of the toolbar is also taken as a qwizbook to be deleted. The correct way is to get all checked boxes in the QwizBook container div. This needs to be corrected and implemented.

kgvinod commented 11 years ago

Target: Apr 12 - should be completed, verified and committed

Induc commented 11 years ago

Corrected the issue. Now only the ids of the Qwizbooks that are checked and is in the QwizBook container div is getting selected and deleted.

kgvinod commented 11 years ago

Done