Hello –
I am using jqx Widget’s Save View and Load View in my code. However save view is not saving the type of my column and hence i have an issue with sorting for numbers.
I have a column which is number and sorting works fine with out any issues before save state. As soon as I save the state and load it back(loadstate() and savestate()), it’s considering the column as string instead of number and sorting is failing. This field is defined as number in API and i have the type as ‘number’ in my html as well.
<grid-column align=”center” type=”number” width=”10%” [hidden]=”true”>
<grid-header>count</grid-header>
<grid-cell id=”countId” field=”workItem.count”></grid-cell>
</grid-column>