Hello,
I use jqxGrid with dynamic data source. I do bind the data source by axios and redux.
const sourceUserData: any =
{
datafields: [...],
datatype: 'array',
localdata: userData.Items
};
and
<JqxGrid
ref={userGrid}
width='100%'
height='500px'
source={new jqx.dataAdapter(sourceUserData)} <---
columns={
If I filter on any column for example on the name column and select any row on displayed rows so will rerendered the grid and my filter value is empty and row selection is lost.
What can I do, my grid do not rerender and rebind.
Thank you for your support.
Rene