public function deleteCollectionRelationAction()
 {
     $colId = $this->getParam("colId");
     $groupId = $this->getParam("groupId");
     $config = new Classificationstore\CollectionGroupRelation();
     $config->setColId($colId);
     $config->setGroupId($groupId);
     $config->delete();
     $this->_helper->json(array("success" => true));
 }