fires before a card is copied
id | number|string | the ID of the original card |
$$("kanban").attachEvent("onBeforeCopy",function(id){
// returning false will block copying for the card
var ocard = this.getItem(id);
if (ocard.type === "single")
return false;
});