Hi Experts,
I have defined an table with 30 columns, in which 30th column is CheckBox control and the table is binded with XSODATA model.
Also i defined Threshold value to the table as below,
<t:Table
id="anomTableId"
selectionMode="None"
visibleRowCount="8"
enableSelectAll="false"
threshold="30"
enableBusyIndicator="true">
Now the issue is when i check first three checkboxes and if i try to scroll the table all the remaining columns are scrolling properly except the column with checkbox i.e.the first three checkboxes in the checkbox column remains the same(checked).
So how to overcome this issue.
I have binded that checkbox column with one of the property from my entityset.
My checkbox column,
<t:Column
sortProperty="ANOMALOUS_BRICK"
filterProperty="ANOMALOUS_BRICK"
autoResizable="true"
width="8rem">
<Label text="Anomalous" tooltip="Anomalous"/>
<t:template>
<CheckBox select="handleAnolamousRiskLevel" selected="{path:'ANOMALOUS_BRICK',formatter:'.anmlFormatter'}">
</CheckBox>
</t:template>
</t:Column>
Please help me on how to overcome this issue.
Regards,
Sathish Kumar.