I am using Typescript and I have implemented a select column (check box select column) using the GridColumn and adding a "selected" property to each object in the array that is being bound to the grid (much like the example shows in the docs). Everything works great until I group by a column. At that point, I get a warning that is coming from one of the telerik js files (column file):
Warning: A component is changing a controlled input to be uncontrolled. This is likely caused by the value changing from a defined to undefined, which should not happen. Decide between using a controlled or uncontrolled.
While this is just a warning and it goes away when using the production build of react, it is still something we would like to try to eliminate if possible. Has anyone else experienced this warning before and is there any solution for it?