Disable expanding functionality of a treegrid

I want to disable the expanding feature, however I still want to be able to drag items into it, just keep all subnodes I am dropping in hidden. ANy way to do that?



Thanks

Basically you can disable such functionality by

grid.attachEvent(“onOpenStart”,function(){
    return false; // block any open operation
});