When i copy the entire row to clip board i dont want the ID

When i copy the entire row to clip board i dont want the ID and the first column to be copied . Is it possible to control the columns that are getting copied on to the clip board. kindly let me know as this is a critical issue in my project …

Is it possible to control the columns that are getting copied
This can be controled by
    grid.setSerializableColumns(…

>> i dont want the ID
next command will remove ID from copied data
    grid.enableCSVAutoID(true);
   

basically operation with clipboard ( except block selection ) uses CSV serialization to form data, so all CSV serialization related command will affect them