Hi Hristo,
My case scenario is I have a combo box column inside a grid. Then the combo box has the following values: (value: null, label: ”}, {value: 0, label: ‘Option 0’}, {value: 1, label: ‘Option 1’}. Now if the column value is equals to 1, Option 1 gets selected as expected. However, when the column has a value 0, the option with the null value gets selected instead of the option with the 0 value. I think this has to do with typescript treating 0 as null. If I remove the null option, the 0 value gets selected as expected.
Thanks!