Clear cell selection after copy

Hi,

how can I clear the selection of the cells after I copied the values to the clipbord?





mygrid.attachEvent(“onKeyPress”,onKeyPressed);

mygrid.enableBlockSelection();





function onKeyPressed(code,ctrl,shift){

if(code==67&&ctrl){

mygrid.setCSVDelimiter("\t")

mygrid.copyBlockToClipboard()

}

return true;

}

Can be forced by
    mygrid._HideSelection();

oh, that’s easy.
thx