Hi Rizwan,
Greetings from syncfusion support
We checked the reported problem, and it was occurring because the columns are not properly refreshed. You can achieve your requirement by using calling the freezeRefresh() method. Please refer the below code example for more information.
function gridRefresh() {
var testingggrid = document.getElementById('BankStatementsNewGridView').ej2_instances[0];
testingggrid.height = $(window).height() - 300;
testingggrid. freezeRefresh(); //call the freezeRefresh() method
$("#btn_Gridrefresh").button('reset');
} |
Regards,
Rajapandi R