How to remove or hide the Add New Button

I have a public form with data table , I would like to take out the Add new record button. Anyway to do that.

Dear @Derek_wong,
Sure, you can hide the button specifically with the following JS code:

fd.rendered(function(){
    $(fd.control('DataTable1').$el).find('.k-grid-add').hide();
})