How to remove odd numer idx value in table

Hi @Manish_Kumar,

Please check the client script syntax and apply it.

frappe.ui.form.on('Your DocType', {
    onload_post_render: function(frm) {
        $('.row-index.sortable-handle.col').hide();
    }
});

Please set your doctype name in the script. then reload and check it.