cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

I'm experiencing an issue when binding a JSON model to a table that has input enabled and TwoWay binding. To illustrate better, check out the example on JSBIN Example and within the output screen, drag each slider and notice the different behaviour.. The top slider works as expected, but the others get stuck as you drag it. When looking at it in more detail, it's like the whole item in the table is getting refreshed each time anything in that row changes.

Anyone seen this and/or have any ideas how to stop this happening while keeping TwoWay binding on?

Thanks,

Matt

0 Likes
View Entire Topic
MikeDoyle
Active Contributor
0 Likes

Hi Matt,

I haven't put a slider in a table, but I have put one in a list, using a custom list item. The sliders work fine in this scenario:

<List items="{path: 'Objectives>/Objectives', templateShareable: true}" >
     <CustomListItem>
        <Slider value="{Objectives>Weighting}" min="0" max="100" step="5"/>
     </CustomListItem>
</List>
MattHarding
SAP Mentor
SAP Mentor
0 Likes

Thanks Mike. Found solution so will add that now. Couple of ways of solving it actually.